-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
68 lines (68 loc) · 2.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"title": "Image Picka",
"name": "image-picka",
"version": "0.19.0",
"description": "An image picker written in webextensions",
"author": "eight04 <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --cache",
"test": "npm run lint && npm run build-src && web-ext lint",
"start": "web-ext run",
"start-chrome": "web-ext run --target chromium",
"build": "run-s build-version build-src build-artifact",
"build-src": "shx rm -rf build/* && rollup -c",
"build-version": "sync-version src/static/manifest.json",
"build-watch": "rollup -c -w",
"build-locales": "tx pull -a --use-git-timestamps && webext-tx-fix -s src/static",
"build-artifact": "shx rm -rf web-ext-artifacts/* && web-ext build --ignore-files **/*.js.map && (git archive -o latest.zip HEAD || exit 0)",
"dev": "run-p -r build-watch start",
"preversion": "npm test",
"version": "npm run build-version && git add .",
"postversion": "git push --follow-tags && npm run build",
"server": "node test/server.js",
"changelog": "shx cat README.md | mkcat | mkql \"[content=Changelog] + ul > :first-child > *\" | mkout"
},
"eslintIgnore": [
"build",
"chrome"
],
"devDependencies": {
"@eight04/idb-storage": "^0.4.2",
"@eslint/js": "^9.9.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@web/rollup-plugin-copy": "^0.5.1",
"content-disposition": "^0.5.4",
"eslint": "^9.9.0",
"espression": "^1.8.5",
"globals": "^15.9.0",
"mime": "^4.0.4",
"mkdoc": "^1.0.49",
"node-sigint": "0.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^4.20.0",
"rollup-plugin-cjs-es": "^3.0.0",
"rollup-plugin-iife": "^0.7.1",
"rollup-plugin-shim": "^1.0.0",
"rollup-plugin-write-output": "^0.2.1",
"shx": "^0.3.4",
"stream-throttle": "^0.1.3",
"sync-version": "^1.0.1",
"tiny-glob": "^0.2.9",
"web-ext": "^8.2.0",
"webext-menus": "^0.3.2",
"webext-pref": "^0.6.0",
"webext-pref-ui": "^0.2.1",
"webext-tx-fix": "^0.3.3",
"webextension-polyfill": "^0.12.0"
},
"repository": "eight04/image-picka",
"private": true,
"dependencies": {
"image-extensions": "^1.1.0",
"srcset": "^5.0.1",
"version-compare": "^3.11.0"
}
}