-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "engine-root",
"version": "0.1.0",
"description": "Semantic dependency engine — internal codename, rename before release",
"repository": {
"type": "git",
"url": "git+https://github.com/MathewAddala/reponoesis.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=packages/core && npm run build --workspace=packages/cli && npm run build --workspace=packages/mcp && npm run build --workspace=packages/ui",
"build:core": "npm run build --workspace=packages/core",
"build:cli": "npm run build --workspace=packages/cli",
"build:mcp": "npm run build --workspace=packages/mcp",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"dev:cli": "npm run dev --workspace=packages/cli",
"dev:mcp": "npm run dev --workspace=packages/mcp",
"pack": "node pack.mjs"
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"typescript": "^5.8.0",
"tsup": "^8.3.0",
"@types/node": "^22.0.0",
"vitest": "^2.1.0"
}
}