-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
142 lines (142 loc) · 4.79 KB
/
Copy pathpackage.json
File metadata and controls
142 lines (142 loc) · 4.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "simfile",
"version": "0.0.3",
"description": "Declarative simulation world mechanics for agentic organizations.",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"simfile": "dist/cli/index.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./schema": {
"types": "./dist/schema/index.d.ts",
"import": "./dist/schema/index.js"
},
"./moltnet": {
"types": "./dist/moltnet/index.d.ts",
"import": "./dist/moltnet/index.js"
},
"./dynamics": {
"types": "./dist/dynamics/index.d.ts",
"import": "./dist/dynamics/index.js"
},
"./observe": {
"types": "./dist/observe/index.d.ts",
"import": "./dist/observe/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./compose": {
"types": "./dist/compose/index.d.ts",
"import": "./dist/compose/index.js"
},
"./spawnfile": {
"types": "./dist/spawnfile/index.d.ts",
"import": "./dist/spawnfile/index.js"
},
"./world-artifact": {
"types": "./dist/world-artifact/index.d.ts",
"import": "./dist/world-artifact/index.js"
},
"./world-artifact/composer": {
"types": "./dist/world-artifact/entrypoint.d.ts",
"import": "./dist/world-artifact/entrypoint.js"
},
"./world": {
"types": "./dist/world/index.d.ts",
"import": "./dist/world/index.js"
},
"./world-server": {
"types": "./dist/world-server/index.d.ts",
"import": "./dist/world-server/index.js"
},
"./world-surface": {
"types": "./dist/world-surface/index.d.ts",
"import": "./dist/world-surface/index.js"
},
"./viewer-extension": {
"types": "./dist/viewer-extension/index.d.ts",
"import": "./dist/viewer-extension/index.js"
},
"./viewer-extension/descriptor": {
"types": "./dist/viewer-extension/descriptor.d.ts",
"import": "./dist/viewer-extension/descriptor.js"
},
"./test-support/locked-port": {
"types": "./dist/test-support/lockedPort.d.ts",
"import": "./dist/test-support/lockedPort.js"
},
"./test-support/world-controller": {
"types": "./dist/test-support/worldController.d.ts",
"import": "./dist/test-support/worldController.js"
}
},
"files": [
"dist",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.test-helper.ts",
"web/dist",
"README.md",
"examples/jungian-dialogue",
"examples/composed-development"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/noopolis/simfile.git"
},
"scripts": {
"build": "rm -rf dist web/dist && tsc --project tsconfig.build.json && npm run build:scripts && npm run build:web && chmod +x dist/cli/index.js",
"build:scripts": "tsc --project tsconfig.scripts.build.json",
"build:web": "vite build --config web/vite.config.ts",
"build:website": "npm --prefix website run build",
"clean": "rm -rf dist web/dist",
"prepack": "npm run build",
"prepublishOnly": "npm run typecheck && npm test",
"typecheck": "tsc --project tsconfig.json --noEmit && tsc --project tsconfig.web.json --noEmit && tsc --project tsconfig.scripts.json",
"pretest": "npm run build",
"test": "node dist/scripts/run-tests.js",
"coverage:render": "node --experimental-strip-types scripts/render-coverage.ts",
"example:composed": "npm run build && node dist/scripts/spawnfile-composed-smoke.js",
"example:internal-smoke": "npm run build && node dist/scripts/spawnfile-composed-smoke.js --internal-lifecycle-smoke",
"example:local": "npm run build && node dist/scripts/simfile-local-example.js",
"dev:spawnfile:check": "node dist/scripts/spawnfile-development.js check",
"dev:spawnfile:run": "npm run build && node dist/scripts/spawnfile-composed-smoke.js",
"dev:spawnfile:setup": "node dist/scripts/spawnfile-development.js setup",
"dev:spawnfile:status": "node dist/scripts/spawnfile-development.js status",
"verify:package-closure": "npm run build && node dist/tools/verify-package-closure.js",
"emit-causal-fixture": "tsx src/runtime/emit-causal-fixture.ts"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.29.0",
"@noopolis/stele": "0.0.2",
"@types/node": "24.12.4",
"esbuild": "0.28.1",
"typescript": "5.9.3",
"yaml": "^2.8.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@glyphcss/core": "^0.1.0",
"@glyphcss/react": "^0.1.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"glyphcss": "^0.1.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"tsx": "^4.21.0",
"vite": "^6.0.0"
}
}