-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.74 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@noopolis/daimon",
"version": "0.2.0",
"description": "Noopolis native per-agent runtime harness built on Pi.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"daimon-runtime": "dist/runtime/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./pi": {
"types": "./dist/pi/index.d.ts",
"import": "./dist/pi/index.js"
},
"./observability": {
"types": "./dist/observability/index.d.ts",
"import": "./dist/observability/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
}
},
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/noopolis/daimon.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc --project tsconfig.build.json && node --import tsx scripts/emitRuntimeContractManifest.ts && node --experimental-strip-types src/runtime/native/copyArtifact.ts",
"build:test-runtime": "rm -rf dist-test-runtime && tsc --project tsconfig.test-runtime.json",
"clean": "rm -rf dist",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck && npm test",
"typecheck": "tsc --project tsconfig.json --noEmit && tsc --project scripts/tsconfig.json --noEmit",
"verify:contract-manifest": "node --import tsx scripts/emitRuntimeContractManifest.ts --check",
"verify:native": "node --experimental-strip-types src/runtime/native/verifyArtifacts.ts",
"verify:production-closure": "node --experimental-strip-types scripts/verifyProductionClosure.ts",
"test": "node --import tsx --test \"src/**/*.test.ts\" scripts/scriptSourcePolicy.test.ts",
"emit-causal-fixture": "tsx src/observability/emitCausalFixture.ts",
"emit-causal-fixture:spoof": "tsx src/observability/emitCausalFixture.ts --spoof",
"live:codex-session": "node --import tsx scripts/liveCodexSession.ts",
"live:grok-broker": "node --import tsx scripts/liveGrokBrokerSession.ts",
"e2e:pi-agent": "tsx src/examples/pi-agent.ts",
"e2e:pi-memory-org": "tsx src/examples/pi-memory-org.ts",
"e2e:jungian-play-org": "tsx src/examples/jungian-play-org.ts",
"e2e:jungian-triad-org": "tsx src/examples/jungian-triad-org.ts"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.79.10",
"@earendil-works/pi-coding-agent": "^0.79.10",
"@modelcontextprotocol/sdk": "^1.29.0",
"@noopolis/mneme": "^0.1.1",
"ajv": "^8.17.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^24.12.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}