generated from antfu-collective/vitesse-webext
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.4 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
{
"name": "auto-group",
"displayName": "Auto Group Tabs",
"version": "0.2.0",
"description": "Automatically group tabs based on your configuration rules.",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=production run-p clear dev:web dev:prepare dev:bg",
"dev:prepare": "esno scripts/prepare.ts",
"dev:web": "vite build --watch",
"dev:bg": "tsup --watch ./src",
"build": "cross-env NODE_ENV=production run-s clear build:prepare build:web build:bg",
"build:prepare": "esno scripts/prepare.ts",
"build:web": "vite build",
"build:bg": "tsup",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf autogroup-tab.zip && jszip-cli add extension/* -o ./autogroup-tab.zip",
"pack:crx": "crx pack extension -o ./extension.crx",
"pack:xpi": "cross-env WEB_EXT_ARTIFACTS_DIR=./ web-ext build --source-dir ./extension --filename extension.xpi --overwrite-dest",
"start:chromium": "web-ext run --source-dir ./extension --target=chromium",
"start:firefox": "web-ext run --source-dir ./extension --target=firefox-desktop",
"clear": "rimraf extension/dist extension/manifest.json extension.*",
"lint": "eslint --fix '{src,scripts}/**/*.{json,ts,js,vue}'",
"test": "vitest test"
},
"devDependencies": {
"@ffflorian/jszip-cli": "^3.1.6",
"@iconify/json": "^2.1.30",
"@types/chrome": "^0.0.183",
"@types/fs-extra": "^9.0.13",
"@types/lodash-es": "^4.17.6",
"@types/node": "^17.0.25",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@vitejs/plugin-vue": "^2.3.1",
"@vue/compiler-sfc": "^3.2.33",
"@vue/test-utils": "^2.0.0-rc.20",
"@vueuse/core": "^8.2.6",
"@yyyanghj/eslint-config": "^1.0.0",
"@yyyanghj/tsconfig": "^1.0.1",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"crx": "^5.0.1",
"eslint": "^8.13.0",
"esno": "^0.14.1",
"fs-extra": "^10.1.0",
"jsdom": "^19.0.0",
"kolorist": "^1.5.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"unplugin-auto-import": "^0.7.1",
"unplugin-icons": "^0.14.1",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.9.5",
"vite-plugin-windicss": "^1.8.4",
"vitest": "^0.9.3",
"vue": "^3.2.33",
"vue-demi": "^0.12.5",
"web-ext": "^6.8.0",
"webext-bridge": "^5.0.4",
"windicss": "^3.5.1"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}