44 lines
933 B
JSON
44 lines
933 B
JSON
{
|
|
"name": "@wxt-dev/analytics",
|
|
"version": "0.1.0",
|
|
"description": "Add analytics to your web extension",
|
|
"repository": "wxt-dev/wxt",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"./plugin": {
|
|
"types": "./dist/plugin.d.mts",
|
|
"default": "./dist/plugin.mjs"
|
|
}
|
|
},
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "wxt",
|
|
"dev:build": "wxt build",
|
|
"check": "check",
|
|
"build": "unbuild",
|
|
"prepack": "unbuild",
|
|
"postinstall": "wxt prepare"
|
|
},
|
|
"peerDependencies": {
|
|
"wxt": ">=0.18.10"
|
|
},
|
|
"devDependencies": {
|
|
"@aklinker1/check": "^1.3.1",
|
|
"@types/chrome": "^0.0.268",
|
|
"prettier": "^3.3.2",
|
|
"publint": "^0.2.8",
|
|
"typescript": "^5.5.2",
|
|
"unbuild": "^2.0.0",
|
|
"wxt": "^0.18.10"
|
|
}
|
|
}
|