-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.13 KB
/
package.json
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
{
"name": "@tscircuit/cli",
"main": "dist/main.js",
"type": "module",
"version": "0.1.10",
"bin": {
"tsci": "./dist/main.js"
},
"scripts": {
"start": "bun run dev",
"dev": "bun --hot ./cli/main.ts dev ./example-dir/snippet.tsx",
"build": "tsup-node cli/main.ts --format esm --sourcemap inline",
"format": "biome format --write .",
"format:check": "biome format .",
"cli": "bun ./cli/main.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tscircuit/core": "^0.0.249",
"@types/bun": "^1.1.15",
"@types/configstore": "^6.0.2",
"@types/react": "^19.0.1",
"@types/semver": "^7.5.8",
"get-port": "^7.1.0",
"tempy": "^3.1.0",
"tsup": "^8.3.5",
"typed-ky": "^0.0.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@tscircuit/file-server": "^0.0.13",
"@tscircuit/runframe": "^0.0.47",
"chokidar": "^4.0.1",
"commander": "^12.1.0",
"configstore": "^7.0.0",
"cosmiconfig": "^9.0.0",
"delay": "^6.0.0",
"ky": "^1.7.4",
"make-vfs": "^1.0.15",
"perfect-cli": "^1.0.20",
"semver": "^7.6.3"
}
}