2022-12-26 11:57:43 +00:00
|
|
|
{
|
|
|
|
"name": "@holllo/webextension-storage",
|
|
|
|
"description": "Ergonomic WebExtension storage helper.",
|
|
|
|
"license": "AGPL-3.0-or-later",
|
2022-12-28 12:51:16 +00:00
|
|
|
"version": "0.2.0",
|
2022-12-26 11:57:43 +00:00
|
|
|
"type": "module",
|
|
|
|
"homepage": "https://git.bauke.xyz/Holllo/webextension-storage",
|
|
|
|
"bugs": {
|
|
|
|
"email": "helllo@holllo.org",
|
|
|
|
"url": "https://github.com/Holllo/webextension-storage/issues"
|
|
|
|
},
|
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
|
|
|
"main": "build/index.js",
|
|
|
|
"types": "build/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"build/"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsx esbuild.ts && tsc",
|
|
|
|
"lint": "xo",
|
|
|
|
"test": "pnpm run build && TEST=true tsx esbuild.ts"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"webextension-polyfill": "^0.10.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-02 12:07:53 +00:00
|
|
|
"@bauke/eslint-config": "^0.1.4",
|
|
|
|
"@bauke/prettier-config": "^0.1.4",
|
|
|
|
"@holllo/test": "^0.2.1",
|
|
|
|
"@types/node": "^20.10.2",
|
|
|
|
"@types/webextension-polyfill": "^0.10.7",
|
|
|
|
"esbuild": "^0.19.8",
|
|
|
|
"tsx": "^4.6.2",
|
|
|
|
"typescript": "^5.3.2",
|
|
|
|
"web-ext": "^7.8.0",
|
2022-12-26 11:57:43 +00:00
|
|
|
"webextension-polyfill": "^0.10.0",
|
2023-12-02 12:07:53 +00:00
|
|
|
"xo": "^0.56.0"
|
2022-12-26 11:57:43 +00:00
|
|
|
},
|
|
|
|
"prettier": "@bauke/prettier-config",
|
|
|
|
"xo": {
|
|
|
|
"extends": "@bauke/eslint-config",
|
|
|
|
"prettier": true,
|
|
|
|
"space": true
|
|
|
|
}
|
|
|
|
}
|