-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "@nicechunk/game",
"version": "0.1.0",
"description": "Open-source browser client for the NICECHUNK voxel civilization on Solana.",
"private": true,
"license": "Apache-2.0",
"homepage": "https://nicechunk.com/play",
"repository": {
"type": "git",
"url": "git+https://github.com/nicechunk/game.git"
},
"bugs": {
"url": "https://github.com/nicechunk/game/issues"
},
"keywords": [
"solana",
"voxel",
"webgl2",
"on-chain-game",
"multiplayer",
"chunkjs"
],
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"check": "npm run check:policy && npm run check:i18n && npm test",
"check:policy": "node scripts/repository-policy.mjs",
"check:i18n": "node scripts/check-play-i18n.mjs",
"test": "node scripts/test-play.mjs",
"build:chain": "vite build --config vite.chain.config.js",
"build:play": "node scripts/build-play-debug-runtime.mjs",
"build": "npm run check:i18n && npm run build:chain && npm run build:play",
"preview": "node scripts/preview-play.mjs"
},
"dependencies": {
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"bs58": "^4.0.1",
"buffer": "^6.0.3"
},
"devDependencies": {
"playwright": "^1.62.1",
"typescript": "^6.0.3",
"vite": "^8.2.1"
}
}