-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.01 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
{
"name": "@noopolis/daimon",
"version": "0.1.1",
"description": "Noopolis native per-agent runtime harness built on Pi.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"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"
}
},
"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",
"clean": "rm -rf dist",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck && npm test",
"typecheck": "tsc --project tsconfig.json --noEmit",
"test": "node --import tsx --test \"src/**/*.test.ts\"",
"e2e:pi-agent": "tsx src/examples/pi-agent.ts",
"e2e:pi-memory-org": "tsx src/examples/pi-memory-org.ts",
"e2e:mixed-engine-org": "tsx src/examples/mixed-engine-org.ts",
"e2e:jungian-play-org": "tsx src/examples/jungian-play-org.ts",
"e2e:jungian-triad-org": "tsx src/examples/jungian-triad-org.ts",
"image:runtime:local": "docker build -f Dockerfile.runtime -t noopolis/spawnfile-runtime-daimon:0.1.1-local --build-arg DAIMON_VERSION=0.1.1 --build-arg MNEME_VERSION=0.1.0 --build-arg PI_VERSION=0.79.10 ."
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@earendil-works/pi-ai": "^0.79.10",
"@earendil-works/pi-coding-agent": "^0.79.10"
},
"peerDependencies": {
"@noopolis/mneme": "^0.1.0"
},
"peerDependenciesMeta": {
"@noopolis/mneme": {
"optional": true
}
},
"devDependencies": {
"@noopolis/mneme": "^0.1.0",
"@types/node": "^24.12.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}