-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.45 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
{
"name": "wikipedia-lists",
"version": "0.0.1",
"private": true,
"os": ["darwin", "linux"],
"engines": {
"node": ">=18"
},
"scripts": {
"dev": "vite",
"dev:firefox": "npm run build:firefox && cd dist && web-ext run --browser-console --devtools",
"build": "vite build",
"build:chrome": "npm run build && cp manifest.chrome.json dist/manifest.json",
"build:firefox": "npm run build && cp manifest.firefox.json dist/manifest.json",
"postbuild": "cp -r assets/*.png dist/assets",
"pack": "web-ext build -o -s dist",
"pack:chrome": "npm run build:chrome && npm run pack",
"pack:firefox": "npm run build:firefox && npm run pack",
"format": "prettier --write src/",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"zip": "zip -r code.zip *.org *.txt assets/*.png *.html *.json *.js src/"
},
"dependencies": {
"@vueuse/core": "^10.3.0",
"pinia": "^2.1.4",
"the-new-css-reset": "^1.9.0",
"vue": "^3.3.4",
"vue-router": "^4.2.4",
"wretch": "^2.6.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^8.0.0",
"@wikimedia/codex": "^0.15.0",
"@wikimedia/codex-design-tokens": "^0.15.0",
"@wikimedia/codex-icons": "^0.15.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"prettier": "^3.0.0",
"vite": "^4.4.6",
"web-ext": "^7.6.2"
}
}