-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
{
"name": "@cmcrobotics/aframe-watcher-bun",
"version": "1.0.1",
"description": "A modern, high-performance companion watch server for the A-Frame Inspector, built with Bun.",
"main": "src/index.ts",
"type": "module",
"bin": {
"aframe-watcher-bun": "src/cli.ts"
},
"scripts": {
"start": "bun run src/cli.ts",
"test": "bun test",
"vendor:inspector": "mkdir -p vendor && bun run scripts/download-inspector.ts",
"build:binary": "bun build src/cli.ts --compile --outfile aframe-watcher",
"build:example": "cd examples/simple && bun install && cd ../.. && bun build examples/simple/server.ts --compile --outfile aframe-watcher-bun-simple-example"
},
"keywords": [
"aframe",
"webvr",
"webxr",
"bun",
"inspector",
"watcher"
],
"author": "CERN Micro Club",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cmcrobotics/aframe-watcher-bun.git"
},
"bugs": {
"url": "https://github.com/cmcrobotics/aframe-watcher-bun/issues"
},
"homepage": "https://github.com/cmcrobotics/aframe-watcher-bun#readme",
"publishConfig": {
"access": "public",
"tag-version-prefix": "v"
},
"files": [
"src",
"vendor",
"README.md",
"LICENSE"
],
"dependencies": {
"@types/bun": "^1.3.11"
},
"devDependencies": {
"prettier": "^3.8.1"
}
}