-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2.38 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
{
"name": "tiny-world-builder",
"version": "1.0.0",
"description": "A self-contained 3D voxel world editor in a static HTML shell. Vercel and Netlify serve the static dist/ output generated by publish.sh. Three.js r185 and its loaders are self-hosted under vendor/three/.",
"private": true,
"scripts": {
"dev": "node tools/dev-server.js",
"build": "./publish.sh",
"check": "node tools/check.js",
"i18n:check": "node tools/i18n-check.js",
"i18n:report": "node tools/i18n-check.js --report",
"smoke": "node tools/smoke-static.js",
"smoke:boot": "node tools/smoke-boot.mjs",
"perf": "node tools/perf-probe.js",
"vendor:three": "node tools/build-three-vendor.mjs",
"stats:random-island": "node tools/random-island-stats.mjs",
"stats:island-viewer": "node tools/island-viewer-sequential-stats.mjs",
"sample:random-island": "node tools/random-island-samples.mjs",
"db:local": "tools/db-local.sh",
"party:dev": "partykit dev party/index.js --port 1999",
"party:dev:open": "partykit dev party/index.js --port 1999 --var WORLDS_JOIN_SECRET= --var WORLDS_SERVICE_TOKEN=",
"party:deploy": "partykit deploy",
"dev:party": "partykit dev party/index.js --port 1999",
"smoke:mp": "node tools/smoke-multiplayer.mjs",
"smoke:mp:ai": "node tools/smoke-multiplayer.mjs --with-ai-bots",
"bots:ai": "node tools/ai-bots.mjs --slug tidewater-bay --bots 3 --mode both",
"bots:lobby": "node tools/lobby-bots.mjs --bots 10 --slug tidewater-bay",
"demo:vehicles": "node plugins/examples/vehicle-road-demo.js",
"test:unit": "node --test tests/*.test.mjs",
"test": "npm run check && npm run smoke && npm run test:unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkneen/tiny-world-builder.git"
},
"keywords": [],
"author": "",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/jasonkneen/tiny-world-builder/issues"
},
"homepage": "https://github.com/jasonkneen/tiny-world-builder#readme",
"devDependencies": {
"esbuild": "^0.28.1",
"partykit": "^0.0.115",
"three": "^0.185.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.191",
"@anthropic-ai/sdk": "^0.106.0",
"@netlify/blobs": "^10.7.9",
"@netlify/database": "^1.1.0",
"@netlify/identity": "^1.2.0",
"netlify-cli": "^26.1.0",
"postgres": "^3.4.9",
"tar": "^7.5.19"
}
}