-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 912 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 912 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
34
35
36
37
{
"name": "@tscircuit/file-server",
"main": "./dist/bundle.js",
"type": "module",
"version": "0.0.34",
"bin": {
"file-server": "./dist/cli.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"@types/react": "18.3.4",
"next": "^14.2.5",
"redaxios": "^0.5.1",
"tsup": "^8.3.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.0.0",
"zod": "*"
},
"dependencies": {
"winterspec": "^0.0.86",
"zustand": "^4.5.5",
"zustand-hoist": "^2.0.1"
},
"scripts": {
"start": "bun run dev",
"dev": "winterspec dev -p 3062",
"build": "bun run build:bundle && bun run build:cli",
"build:bundle": "winterspec bundle -o dist/bundle.js",
"build:cli": "tsup cli.ts --format esm --dts",
"next:dev": "next dev",
"format": "biome format --write .",
"format:check": "biome format ."
}
}