forked from tscircuit/template-api-fake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 775 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 775 Bytes
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
{
"name": "debug-api",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"ky": "^1.8.1",
"next": "^14.2.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"winterspec": "^0.0.107",
"zod": "^3.23.8",
"zustand": "^4.5.5",
"zustand-hoist": "^2.0.1"
},
"scripts": {
"start": "bun run dev",
"dev": "winterspec dev",
"build": "winterspec bundle -o dist/bundle.js",
"next:dev": "next dev",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit"
}
}