-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.55 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@robotnetworks/robotnet",
"version": "0.3.7",
"description": "First-party CLI for Robot Networks background and realtime workflows.",
"keywords": [
"robotnet",
"robotnetworks",
"cli",
"agents",
"ai"
],
"homepage": "https://docs.robotnet.works/cli",
"bugs": {
"url": "https://github.com/RobotNetworks/robotnet-cli/issues",
"email": "nick@robotnet.works"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RobotNetworks/robotnet-cli.git"
},
"license": "MIT",
"author": "RobotNetworks <nick@robotnet.works>",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"robotnet": "./bin/robotnet.js"
},
"engines": {
"node": ">=24"
},
"files": [
"dist/",
"bin/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "node scripts/run-tests.mjs",
"smoke": "node scripts/ci-smoke-test.mjs",
"conformance": "node --import tsx tests/conformance/run-conformance.ts",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"commander": "^13.0.0",
"env-paths": "^3.0.0",
"open": "^10.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/ws": "^8.5.0",
"tsx": "^4.0.0",
"typescript": "^5.7.0"
}
}