-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.9 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.9 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
53
54
55
56
57
58
59
60
61
{
"name": "feather-gb",
"license": "UNLICENSED",
"homepage": "https://vojty.github.io/feather-gb/",
"type": "module",
"scripts": {
"build": "pnpm run build:gb && pnpm run build:debugger && rimraf public && vite build && gzip --keep --recursive public",
"build:gb": "wasm-pack build --release ./gb-web --target bundler",
"build:debugger": "wasm-pack build --release ./debugger-web --target bundler",
"dev": "pnpm run build:gb && pnpm run build:debugger && vite dev",
"preview": "vite preview",
"debugger": "cargo run -p debugger --release",
"desktop": "cargo run -p desktop --release",
"tests": "cargo run -p integration-tests --release",
"format": "biome format --write",
"lint": "biome lint",
"tsc": "tsc --noEmit",
"validate": "pnpm run tsc && pnpm run lint"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@darkobits/vite-plugin-favicons": "^0.3.3",
"@types/node": "^24.10.1",
"@types/react": "^19.2.4",
"@types/react-dom": "^19.2.3",
"@types/styled-components": "^5.1.35",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"fast-glob": "^3.3.2",
"postcss": "^8.5.6",
"rehype-parse": "^9.0.1",
"rehype-rewrite": "^4.0.2",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-html": "^16.0.1",
"rimraf": "^6.1.0",
"typescript": "^5.9.3",
"unified": "^11.0.5",
"unplugin-fonts": "^1.4.0",
"vite": "^7.2.2",
"vite-plugin-svgr": "^4.5.0",
"vite-plugin-wasm": "^3.5.0",
"vite-plugin-wasm-pack": "^0.1.12"
},
"dependencies": {
"@rehooks/local-storage": "^2.4.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-is": "^19.2.0",
"react-router-dom": "^7.9.5",
"styled-components": "^6.1.19",
"svgo": "^3.3.2",
"tailwindcss": "^3.4.13"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}