-
-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 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
40
41
42
{
"name": "shortkeys",
"version": "5.0.1",
"description": "Custom keyboard shortcuts for your browser",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"zip:edge": "wxt zip -b edge",
"zip:opera": "wxt zip -b opera",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"postinstall": "wxt prepare || true",
"build:site": "npx tsx scripts/build-catalog.ts && cp -r public/images site/public/images && cd site && npx astro build",
"test:e2e": "npx playwright test",
"visual-review": "npx tsx scripts/visual-review.ts",
"dev:site": "cd site && npx astro dev"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"@types/chrome": "^0.1.40",
"@vitest/coverage-v8": "^3.2.4",
"@wxt-dev/module-vue": "^1.0.3",
"astro": "^6.1.9",
"jsdom": "^29.0.2",
"vitest": "^3.2.4",
"wxt": "^0.20.25"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/theme-one-dark": "^6.1.3",
"codemirror": "^6.0.2",
"monaco-editor": "^0.55.1",
"mousetrap": "^1.6.3",
"uuid": "^14.0.0",
"vue": "^3.5.33"
}
}