-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
package.json
File metadata and controls
61 lines (61 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
59
60
61
{
"name": "cloud-agent",
"version": "0.1.4",
"type": "module",
"main": "index.js",
"bin": {
"cloud-agent": "./cli.js"
},
"files": [
"cli.js",
"src/**/*.js",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/jxnl/cloud-cursor-agent.git"
},
"keywords": [
"cursor",
"ai",
"agents",
"cli",
"github",
"pr"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "bun run build-cli.ts",
"dev": "bun cloud-agent.tsx",
"install:global": "npm pack && npm install -g cloud-agent-*.tgz && rm -f cloud-agent-*.tgz",
"verify": "test -f cli.js && test -x cli.js && echo '✓ Build verification: cli.js exists and is executable' || echo '✗ Build verification failed'",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"prepare": "husky"
},
"author": "jxnl",
"license": "MIT",
"description": "CLI tool for managing Cursor Cloud Agents",
"dependencies": {
"commander": "^14.0.2",
"ink": "^4.4.1",
"react": "^18.2.0",
"yoga-wasm-web": "~0.3.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^20.0.0",
"@types/react": "^18.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2"
}
}