-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.9 KB
/
package.json
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
{
"name": "@benev/toolbox",
"version": "0.8.0-19",
"description": "web game infrastructure",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"files": [
"x",
"s"
],
"bin": {
"babylon-cleanup": "s/bin/babylon-cleanup",
"glbx": "x/bin/glbx/glbx.js"
},
"scripts": {
"prepare": "./s/bin/babylon-cleanup",
"build": "rm -rf x && run-s build-code build-ssg",
"build-code": "turtle build --out=x",
"build-ssg": "turtle ssg --in=s,x --out=x",
"start": "run-p start-http start-turtle",
"start-http": "http-server x",
"start-turtle": "turtle watch --in=s,x --out=x -v",
"links": "ln -s \"$(realpath temp)\" x/temp",
"devlinks": "run-s devlinks-slate",
"devlinks-slate": "rm -rf node_modules/@benev/slate && ln -s \"$(realpath ../slate)\" node_modules/@benev/slate",
"test": "cynic node x/tests.test.js",
"test-watch": "chokidar \"x/**/*.js\" -c \"clear && npm test\""
},
"dependencies": {
"@benev/slate": "^0.3.0-11",
"@dimforge/rapier3d-compat": "^0.14.0",
"@gltf-transform/cli": "^4.1.1",
"@gltf-transform/core": "^4.1.1",
"@gltf-transform/extensions": "^4.1.1",
"@gltf-transform/functions": "^4.1.1",
"draco3dgltf": "^1.5.7",
"es-module-shims": "^2.0.9",
"glob": "^11.0.1",
"simplex-noise": "^4.0.3"
},
"peerDependencies": {
"@babylonjs/core": "^7.49.0",
"@babylonjs/loaders": "^7.49.0"
},
"devDependencies": {
"@benev/turtle": "^0.6.8",
"chokidar": "^4.0.3",
"chokidar-cli": "^3.0.0",
"cynic": "^0.2.1",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.3"
},
"keywords": [
"web-games",
"toolkit",
"babylon",
"babylonjs"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/toolbox.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/toolbox/issues"
},
"homepage": "https://github.com/benevolent-games/toolbox#readme"
}