-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) 路 1.57 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.57 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": "sparrow-rtc",
"version": "0.2.15",
"description": "webrtc connectivity library for games",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "./x/index.js",
"exports": {
".": "./x/index.js"
},
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s _clean _links _tsc _scute",
"watch": "octo 'scute -vw' 'npm run start -s' 'node --watch x/tests.test.js' 'tsc -w' 'http-server x'",
"_clean": "rm -rf x && mkdir x",
"_links": "ln -s \"$(realpath s)\" x/s && ln -s \"$(realpath assets)\" x/assets",
"_tsc": "tsc",
"_scute": "scute -v",
"start": "node --env-file=.env.dev x/signaller/server.js",
"start-prod": "node --env-file=.env.prod x/signaller/server.js",
"count": "find s -path '*/_archive' -prune -o -name '*.ts' -exec wc -l {} +",
"test": "node x/tests.test.js",
"test-debug": "node inspect x/tests.test.js"
},
"dependencies": {
"@benev/argv": "^0.3.12",
"@e280/renraku": "^0.5.0",
"@e280/sly": "^0.2.0-11",
"@e280/sten": "^0.0.0-6",
"@e280/strata": "^0.2.0-8",
"@e280/stz": "^0.2.0",
"lit": "^3.3.1"
},
"devDependencies": {
"@e280/science": "^0.1.2",
"@e280/scute": "^0.1.0",
"@types/node": "^24.3.1",
"http-server": "^14.1.1",
"importly": "^0.2.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/sparrow.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/sparrow/issues"
},
"homepage": "https://github.com/benevolent-games/sparrow#readme"
}