-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "fractalcode",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"fractalcode": "bin/fractalcode.js"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently -k -n server,client \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "tsx watch packages/server/src/cli.ts",
"dev:client": "npm -w @fractalcode/client run dev",
"start": "tsx packages/server/src/cli.ts",
"build": "npm -w @fractalcode/client run build",
"test": "vitest run",
"typecheck": "tsc --noEmit -p packages/shared && tsc --noEmit -p packages/server && tsc --noEmit -p packages/client",
"lint": "eslint . --max-warnings 0",
"check": "npm run typecheck && npm run lint && vitest run"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"concurrently": "^10.0.3",
"eslint": "^10.7.0",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"license": "Apache-2.0"
}