-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 3.87 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
{
"name": "simfile",
"version": "0.0.2",
"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",
"web/dist",
"README.md"
],
"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:web && chmod +x dist/cli/index.js",
"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",
"pretest": "npm run build",
"test": "node scripts/run-tests.mjs",
"coverage:render": "node --import tsx scripts/render-coverage.ts",
"verify:package-closure": "node tools/verify-package-closure.mjs",
"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"
}
}