-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
88 lines (88 loc) · 3.02 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
81
82
83
84
85
86
87
88
{
"name": "chikamichi",
"displayName": "Chikamichi - Quickly find a page -",
"version": "3.4.0",
"description": "Command pallet for the browser. Enables fuzzy search for histories, tabs and bookmarks.",
"private": true,
"scripts": {
"dev": "npm run clear && cross-env NODE_ENV=development run-p dev:*",
"dev:prepare": "esno scripts/prepare.ts",
"dev:web": "vite",
"dev:bg": "tsup --watch ./src",
"build": "cross-env NODE_ENV=production run-s clear build:web build:prepare build:bg",
"build:watch": "nodemon --exec pnpm build",
"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 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 extension extension.*",
"lint": "eslint --fix 'src/**/*.{json,ts,js,vue}'",
"format": "prettier --write 'src/**/*.{json,ts,js,vue}'",
"test": "vitest",
"test:ci": "vitest run",
"prepare": "husky install",
"serve": "serve extension -l 3000",
"cypress:run": "cypress run",
"cypress:open": "cypress open"
},
"devDependencies": {
"@antfu/eslint-config": "2.6.4",
"@ffflorian/jszip-cli": "3.6.2",
"@iconify/json": "2.2.196",
"@ngneat/falso": "7.1.1",
"@types/chrome": "0.0.263",
"@types/fs-extra": "11.0.4",
"@types/lodash.debounce": "4.0.9",
"@types/node": "20.11.16",
"@types/webextension-polyfill": "0.10.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@vitejs/plugin-vue": "5.0.4",
"@vue/compiler-sfc": "3.4.15",
"@vueuse/core": "10.7.2",
"chokidar": "3.6.0",
"cross-env": "7.0.3",
"crx": "5.0.1",
"cypress": "13.6.4",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"esno": "4.0.0",
"fs-extra": "11.2.0",
"fuse.js": "7.0.0",
"husky": "9.0.10",
"kolorist": "1.8.0",
"lint-staged": "15.2.2",
"lodash.debounce": "4.0.8",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"serve": "14.2.1",
"terser": "5.27.0",
"typescript": "5.3.3",
"unplugin-auto-import": "0.17.5",
"unplugin-icons": "0.18.5",
"unplugin-vue-components": "0.26.0",
"vite": "5.0.13",
"vite-plugin-windicss": "1.9.3",
"vitest": "0.25.6",
"vue": "3.4.15",
"vue-demi": "0.14.7",
"web-ext": "7.11.0",
"webext-bridge": "5.0.5",
"webextension-polyfill": "0.10.0",
"nodemon": "^3.0.0",
"tsup": "8.0.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{json,ts,js,vue}": "prettier --write"
},
"dependencies": {
"parse-domain": "8.0.1",
"vue-word-highlighter": "1.2.3"
}
}