-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.04 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
{
"name": "openrabbit-node",
"version": "0.2.0",
"description": "Clean-room, open-source node client for the rabbit r1 remote-control protocol. Faster drop-in for the official rabbit-agent.",
"type": "module",
"license": "Apache-2.0",
"author": "Victor Cruz",
"repository": {
"type": "git",
"url": "git+https://github.com/vcruz305/openrabbit.git"
},
"bin": {
"openrabbit": "dist/index.js"
},
"files": [
"dist/index.js",
"README.md",
"LICENSE",
"NOTICE",
"SECURITY.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"typecheck": "tsc --noEmit",
"test": "bun test",
"build": "bun build src/index.ts --target=bun --outdir dist",
"compile": "bun build src/index.ts --compile --outfile dist/openrabbit-node",
"check": "bun run typecheck && bun test",
"prepack": "bun run build",
"start": "bun run src/index.ts run"
},
"devDependencies": {
"@types/bun": "1.3.13",
"typescript": "^5.6.0"
},
"engines": {
"bun": ">=1.3.0"
},
"packageManager": "bun@1.3.13"
}