-
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.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 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": "dream-machine-workspace",
"version": "0.0.0",
"private": true,
"description": "The Dream Machine — config-driven, evidence-gated nightly repository evolution (workspace root)",
"type": "module",
"license": "MIT",
"author": "rUv <ruv@ruv.net>",
"homepage": "https://github.com/ruvnet/dream-machine",
"repository": {
"type": "git",
"url": "https://github.com/ruvnet/dream-machine.git"
},
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "npm run build -w packages/witness && npm run build -w packages/ledger && npm run build -w packages/compile && npm run build -w packages/schedule && npm run build -w packages/memory && npm run build -w packages/cli",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint packages",
"typecheck": "tsc -b --noEmit || tsc -p tsconfig.json --noEmit",
"clean": "rm -rf packages/*/dist coverage"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.1.0",
"eslint": "^9.15.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.0"
}
}