-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 2 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
41
42
43
44
45
46
47
48
49
50
{
"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": "^22.13.0 || ^24.0.0"
},
"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 && npm run build -w packages/edge-contracts && npm run build -w packages/edge-sim",
"test": "vitest run && npm run test:governance",
"test:unit": "vitest run",
"test:governance": "node --test scripts/*.test.mjs",
"test:edge-contracts": "node --test scripts/check-edge-contracts.test.mjs",
"check:edge-contracts": "node scripts/check-edge-contracts.mjs",
"check": "npm run typecheck && npm run build && npm run lint && npm test && npm run check:edge-contracts && npm run check:development-policy",
"check:development-policy": "node scripts/mission.mjs policy",
"mission": "node scripts/mission.mjs",
"mission:simulate": "node scripts/mission.mjs simulate",
"mission:benchmark": "node scripts/mission.mjs benchmark",
"benchmark:codec": "node scripts/benchmark-ticket-codec.mjs",
"test:watch": "vitest",
"lint": "eslint packages",
"typecheck": "tsc -p tsconfig.json --noEmit",
"clean": "rm -rf packages/*/dist coverage"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "4.1.11",
"ajv": "8.20.0",
"ajv-formats": "3.0.1",
"eslint": "10.10.0",
"typescript": "^5.6.0",
"typescript-eslint": "8.69.0",
"vite": "7.3.6",
"vitest": "4.1.11"
}
}