-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.22 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
{
"name": "@benev/regis",
"private": true,
"version": "0.0.1",
"description": "chess-inspired strategy game",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "rm -rf x && turtle build --out=x -v && turtle ssg --in=s,x --out=x --exclude=bin -v && run-s links",
"links": "run-s links-s links-assets links-benev-storage",
"links-s": "ln -s \"$(realpath s)\" x/s",
"links-assets": "mkdir -p assets/x && ln -s \"$(realpath assets/x)\" x/assets",
"links-benev-storage": "rm -f assets/benev-storage && ln -s \"$(realpath ~/mnt/benev-storage)\" assets/benev-storage",
"http": "http-server x",
"watch": "turtle watch --in=s,x --out=x --exclude=bin -v",
"start": "run-p http watch",
"director": "node x/director/plumbing/server.js",
"devlinks": "run-s devlinks-toolbox devlinks-slate devlinks-renraku",
"devlinks-toolbox": "rm -rf node_modules/@benev/toolbox && ln -s \"$(realpath ../toolbox)\" node_modules/@benev/toolbox",
"devlinks-slate": "rm -rf node_modules/@benev/slate && ln -s \"$(realpath ../slate)\" node_modules/@benev/slate",
"devlinks-renraku": "rm -rf node_modules/renraku && ln -s \"$(realpath ../../renraku)\" node_modules/renraku",
"test": "cynic node x/tests.test.js",
"test-watch": "chokidar \"x/**/*.js\" -c \"clear && npm test\"",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +"
},
"dependencies": {
"@babylonjs/core": "^7.42.0",
"@babylonjs/loaders": "^7.42.0",
"@benev/argv": "^0.3.8",
"@benev/slate": "^0.3.0-2",
"@benev/toolbox": "^0.8.0-6",
"markdown-it": "^14.1.0",
"renraku": "^0.4.3",
"zx": "^8.3.0"
},
"devDependencies": {
"@benev/batch": "^0.0.1",
"@benev/turtle": "^0.6.4",
"@types/markdown-it": "^14.1.2",
"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.2"
},
"keywords": [
"game",
"babylon"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/regis.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/regis/issues"
},
"homepage": "https://github.com/benevolent-games/regis#readme"
}