-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 3.14 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "explorer-xiaoshu",
"displayName": "Explorer Xiaoshu",
"version": "0.9.16",
"private": true,
"description": "Powerful and fast sidebar search toggle tool",
"scripts": {
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:web": "vite",
"dev:js": "npm run build:js -- --mode development",
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:js",
"build:prepare": "esno scripts/prepare.ts",
"build:web": "vite build",
"build:js": "vite build --config vite.config.content.ts",
"pack": "cross-env NODE_ENV=production run-p pack:*",
"pack:zip": "rimraf extension.zip && jszip-cli add extension -o ./extension.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 --glob extension/dist extension/manifest.json extension.*",
"lint": "eslint '{src,extension/_locales}/**/*.{json,ts,js,vue}'",
"prepare": "husky install",
"preinstall": "node ./scripts/preinstall.js"
},
"dependencies": {
"@xiaoshuapp/draggable": "4.1.1",
"dexie": "3.2.3",
"nexmoe.css": "0.6.0",
"sharer.js": "0.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "0.37.0",
"@commitlint/cli": "17.5.1",
"@commitlint/config-conventional": "17.4.4",
"@ffflorian/jszip-cli": "3.4.1",
"@iconify/json": "2.2.70",
"@types/download": "8.0.2",
"@types/file-saver": "2.0.5",
"@types/fs-extra": "11.0.1",
"@types/node": "18.16.16",
"@types/webextension-polyfill": "0.10.0",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"@vitejs/plugin-vue": "4.2.3",
"@vue/compiler-sfc": "3.3.4",
"@vueuse/core": "10.1.2",
"body-parser": "1.20.2",
"chokidar": "3.5.3",
"cross-env": "7.0.3",
"crx": "5.0.1",
"download": "8.0.0",
"eslint": "8.37.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-prettier": "4.2.1",
"esno": "0.16.3",
"express": "4.18.2",
"file-saver": "2.0.5",
"fs-extra": "9.1.0",
"husky": "8.0.3",
"kolorist": "1.8.0",
"lint-staged": "13.2.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.7",
"rimraf": "5.0.1",
"safe-compare": "1.1.4",
"typescript": "5.0.4",
"unplugin-auto-import": "0.16.2",
"unplugin-icons": "0.16.1",
"unplugin-vue-components": "0.24.1",
"vite": "4.3.9",
"vue": "3.3.4",
"vue-demi": "0.14.5",
"vue-eslint-parser": "9.1.0",
"web-ext": "7.6.2",
"webext-bridge": "5.0.5",
"webextension-polyfill": "0.10.0"
}
}