-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.85 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
{
"name": "simfile",
"version": "0.0.1",
"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"
}
},
"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",
"test": "node --import tsx --test \"src/**/*.test.ts\" \"web/src/**/*.test.ts\"",
"coverage:render": "node --import tsx scripts/render-coverage.ts",
"emit-causal-fixture": "tsx src/runtime/emit-causal-fixture.ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@noopolis/stele": "^0.0.1",
"yaml": "^2.8.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@glyphcss/core": "^0.1.0",
"@glyphcss/react": "^0.1.0",
"@types/node": "^24.12.4",
"@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",
"typescript": "^5.9.3",
"vite": "^6.0.0"
}
}