-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.08 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
{
"name": "dycode",
"version": "0.0.0",
"private": true,
"description": "Open-source multi-agent orchestration IDE (Electron + TypeScript).",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=22 <25",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "turbo run build",
"typecheck": "turbo run typecheck",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"verify": "bash scripts/verify.sh",
"init": "bash scripts/init.sh",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@eslint/js": "9.39.4",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"turbo": "^2.3.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0",
"vitest": "^2.1.8",
"zod": "^3.24.1"
}
}