-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 KB
/
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
35
36
37
38
39
{
"name": "medium-unlocker",
"version": "0.1.48",
"private": true,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"manifest": "node scripts/manifest.js",
"git:tag": "git commit -am \"patch version v$npm_package_version\" && git tag -a v$npm_package_version -m \"patch version v$npm_package_version\"",
"git:push": "git push --follow-tags",
"git:exec": "npm run git:tag --scripts-prepend-node-path && npm run git:push --scripts-prepend-node-path",
"preversion": "yarn build",
"postversion": "npm run manifest --scripts-prepend-node-path && npm run git:exec --scripts-prepend-node-path",
"xpi:build": "web-ext build --overwrite-dest",
"xpi:self": "web-ext sign",
"xpi:amo": "web-ext sign --channel=unlisted --id=\"{b5ff5c8d-d1cd-49f5-aba0-b505264062b5}\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"rollup": "^2.3.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-livereload": "^2.0.0",
"rollup-plugin-svelte": "^7.0.0",
"rollup-plugin-terser": "^7.0.0",
"svelte": "^3.0.0",
"web-ext": "7.5.0"
},
"dependencies": {
"sirv-cli": "^1.0.0"
},
"webExt": {
"sourceDir": "public",
"artifactsDir": "public",
"ignoreFiles": [
"*.map"
]
}
}