-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "aikon",
"version": "0.1.0",
"description": "Advanced local-first game-icons editor",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite --config vite.config.ts",
"build": "vite build --config vite.config.ts",
"typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.scripts.json --noEmit",
"test": "tsx --test \"tests/**/*.test.ts\"",
"icons:download": "tsx scripts/icons-download.ts",
"icons:sync": "tsx scripts/icons-sync.ts"
},
"dependencies": {
"@mantine/core": "^8.3.15",
"@mantine/hooks": "^8.3.15",
"@tabler/icons-react": "^3.37.1",
"animejs": "^4.3.6",
"gifenc": "^1.0.3",
"libwebp-wasm": "^0.1.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"three": "^0.180.0",
"zustand": "^5.0.11"
},
"devDependencies": {
"@types/node": "^24.9.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"linkedom": "^0.18.12",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.2.2"
}
}