-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.5 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
43
44
45
46
47
48
49
50
51
52
{
"name": "x-puzzle-kit",
"version": "1.3.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"dev": "vite",
"dev:web": "vite dev -c vite.config.web.ts",
"dev:test": "vite serve -c vite.test.config.ts",
"build": "node scripts/sync-shortcuts.js && vite build",
"build:web": "echo \"Building Web App...\" && node scripts/sync-shortcuts.js && vite build -c vite.config.web.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"package": "npm run build && node scripts/package.js",
"version": "node scripts/update-version.js && git add src/manifest.json"
},
"keywords": [],
"author": "",
"license": "GPL-3.0",
"type": "commonjs",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@preact/preset-vite": "^2.10.2",
"@types/chrome": "^0.1.36",
"@types/node": "^25.0.10",
"@types/sortablejs": "^1.15.9",
"archiver": "^7.0.1",
"crx": "^5.0.1",
"eslint": "^9.39.2",
"globals": "^17.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-static-copy": "^3.2.0",
"vite-plugin-web-extension": "^4.5.0"
},
"dependencies": {
"@types/jszip": "^3.4.0",
"jszip": "^3.10.1",
"lucide-preact": "^0.563.0",
"preact": "^10.28.2",
"sonner": "^2.0.7",
"sortablejs": "^1.15.6"
}
}