-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 919 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 919 Bytes
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
{
"name": "@latticeag/world",
"version": "0.1.0",
"description": "LatticeAG World zone core: event-sourced world state isolated by claim, with runtime-enforced fences, bound simulation, and replayable evidence.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.5.0"
},
"bin": {
"world": "bin/world"
},
"files": [
"dist",
"bin",
"native"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:native": "cc -O2 -Wall -Wextra -o native/peercred native/peercred.c && cc -O2 -Wall -Wextra -o native/world-launcher native/world-launcher.c",
"test": "npm run build && node --test dist/test/*.test.js",
"conformance": "npm run build && node --test dist/test/vectors.test.js",
"lint": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^24.13.4",
"typescript": "^5.9.3"
}
}