-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"private": true,
"name": "@benev/boundy",
"version": "0.0.0-0",
"description": "multiplayer 2d game",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "./x/index.js",
"files": [
"x",
"s"
],
"dependencies": {
"@benev/math": "^0.0.0-3",
"@e280/comrade": "^0.0.0-24",
"@e280/science": "^0.0.4",
"@e280/sly": "^0.0.0",
"@e280/strata": "^0.0.1",
"@e280/stz": "^0.0.0",
"lit": "^3.3.1"
},
"devDependencies": {
"@e280/scute": "^0.0.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.8.3"
},
"scripts": {
"build": "run-s _clean _tsc _ln _scute",
"_clean": "rm -rf x",
"_tsc": "tsc",
"_scute": "scute -v",
"start": "octo 'scute -vw' 'tsc -w' 'node --watch x/tests.test.js' 'http-server x -c-1'",
"_ln": "run-s _ln-s _ln-assets",
"_ln-s": "ln -s \"$(realpath s)\" x/s",
"_ln-assets": "ln -s \"$(realpath assets)\" x/assets",
"test": "node x/tests.test.js",
"test-debug": "node inspect x/tests.test.js",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +"
},
"homepage": "https://github.com/benevolent-games/boundy#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/boundy.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/boundy/issues"
}
}