-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.07 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.07 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
{
"name": "diamondjs-monorepo",
"version": "0.1.0",
"private": true,
"description": "DiamondJS - JavaScript framework for LLM-assisted development",
"repository": {
"type": "git",
"url": "https://github.com/Node0/diamondjs.git"
},
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"check-loc": "tsx tools/check-loc-budget.ts",
"clean": "npm run clean --workspaces --if-present",
"dev": "npm run dev --workspaces --if-present",
"prepublishOnly": "npm run check-loc && npm run build && npm run test"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0",
"@vitest/coverage-v8": "^2.0.0",
"tsx": "^4.7.0",
"prettier": "^3.2.0",
"eslint": "^9.0.0",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=20.0.0"
}
}