-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
39 lines (38 loc) · 1.13 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
{
"name": "chrome-extension",
"version": "1.8.4",
"private": true,
"sideEffects": false,
"scripts": {
"build": "run-s clean type-check build-background build-contentscript build-ui build-move",
"clean": "shx rm -rf dist",
"type-check": "vue-tsc --noEmit",
"build-ui": "vite build",
"build-background": "ENTRY=background vite build -c vite.config.extension.ts",
"build-contentscript": "ENTRY=contentscript vite build -c vite.config.extension.ts",
"build-move": "mv ../browser-extension-template/dist ../chrome-extension",
"run": "web-ext run -t chromium",
"test": "echo 'no test yet'",
"package": "scripts/package-release",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"postinstall": "node scripts/init-env"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"web-ext": "7.4.0"
},
"workspaces": {
"nohoist": [
"**"
]
},
"webExt": {
"sourceDir": "dist",
"run": {
"startUrl": [
"https://fr.wikipedia.org/wiki/Wikip%C3%A9dia:Accueil_principal"
]
}
}
}