-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.68 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.68 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"title": "Image Picka",
"name": "image-picka",
"version": "0.23.2",
"description": "An image picker written in webextensions",
"author": "eight04 <[email protected]>",
"license": "MIT",
"scripts": {
"lint": "eslint . --cache && stylelint 'src/**/*.{css,scss}'",
"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-doc build-artifact",
"build-src": "shx rm -rf build/* && rollup -c",
"build-doc": "inlinejs BUILD.md -w",
"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 server 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": "node latest-changelog.mjs"
},
"eslintIgnore": [
"build",
"chrome"
],
"devDependencies": {
"@babel/preset-env": "^7.28.5",
"@eight04/idb-storage": "^0.4.2",
"@eslint/js": "^9.39.1",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@web/rollup-plugin-copy": "^0.5.1",
"content-disposition": "^1.0.1",
"eslint": "^9.39.1",
"espression": "^1.8.5",
"globals": "^16.5.0",
"inline-js": "^0.9.1",
"mime": "^4.1.0",
"node-sigint": "0.0.1",
"npm-run-all": "^4.1.5",
"rollup": "^4.53.3",
"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.4.0",
"stream-throttle": "^0.1.3",
"stylelint-config-standard": "^39.0.1",
"sync-version": "^1.1.0",
"tiny-glob": "^0.2.9",
"web-ext": "^9.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": {
"browserslist": "^4.28.1",
"client-zip": "^2.5.0",
"css-prop-parser": "^0.1.0",
"image-extensions": "^1.1.0",
"modern-tar": "^0.7.2",
"srcset": "^5.0.2",
"stylelint": "^16.26.1",
"stylelint-browser-compat": "^1.0.0-beta.180",
"version-compare": "^3.12.0"
},
"browserslist": [
"Firefox >= 68"
]
}