-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"license": "GPL-3.0",
"repository": "github:AprilSylph/Palettes-for-Tumblr",
"type": "module",
"scripts": {
"test": "eslint . && web-ext lint",
"lint-webextension": "web-ext lint",
"build-webextension": "web-ext build",
"sign-webextension": "web-ext sign",
"webstore-upload": "chrome-webstore-upload upload --source=src/ --auto-publish",
"update-palette-system-data": "node dev/update-palette-system-data.js"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^3.3.1",
"eslint": "^8.57.1",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.6.0",
"puppeteer": "^23.10.4",
"web-ext": "^8.3.0"
},
"dependencies": {
"normalize.css": "^8.0.1",
"webextension-polyfill": "^0.12.0"
},
"webExt": {
"sourceDir": "src/",
"build": {
"overwriteDest": true
}
}
}