forked from antfu-collective/vitesse-webext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.42 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
{
"name": "vitesse-webext",
"displayName": "Vitesse WebExt",
"description": "[description]",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts dev",
"dev:web": "vite",
"dev:js": "npm run build:js -- --watch src",
"build": "run-s clear build:web build:prepare build:js",
"build:prepare": "esno scripts/prepare.ts build",
"build:web": "vite build",
"build:js": "tsup src/background src/content --format iife --out-dir extension/dist --no-splitting",
"clear": "rimraf extension/dist"
},
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@iconify/json": "^1.1.379",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.4.1",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@vitejs/plugin-vue": "^1.2.5",
"@vue/compiler-sfc": "^3.1.5",
"@vueuse/core": "^5.1.4",
"chokidar": "^3.5.2",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"esno": "^0.8.0",
"fs-extra": "^10.0.0",
"kolorist": "^1.5.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tsup": "^4.12.5",
"typescript": "^4.3.5",
"vite": "^2.4.3",
"vite-plugin-components": "^0.13.2",
"vite-plugin-icons": "^0.6.5",
"vite-plugin-windicss": "^1.2.5",
"vue": "^3.1.5",
"vue-demi": "^0.11.2",
"vue-global-api": "^0.2.4",
"webext-bridge": "^4.0.0",
"webextension-polyfill-ts": "^0.26.0"
}
}