-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 KB
/
package.json
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
70
71
72
73
74
75
76
77
{
"name": "cursor-tools",
"description": "CLI tools for AI agents",
"keywords": [
"cursor",
"tools",
"ai",
"assistant"
],
"version": "0.6.0-alpha.6",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"cursor-tools": "./dist/index.mjs"
},
"scripts": {
"compile": "tsc -build",
"build": "node build.js",
"prepublish": "npm run compile && npm run lint && npm run build",
"dev": "node --import=tsx src/index.ts",
"serve-test": "bun --hot tests/commands/browser/serve.ts",
"test": "vitest",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"lint": "npm run format && eslint \"src/**/*.ts\"",
"release": "node scripts/release.cjs"
},
"files": [
"package.json",
"dist",
"README.md"
],
"author": "eastlondoner",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eastlondoner/cursor-tools.git"
},
"homepage": "https://github.com/eastlondoner/cursor-tools#readme",
"bugs": {
"url": "https://github.com/eastlondoner/cursor-tools/issues"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"@types/bun": "^1.2.2",
"@types/node": "^22.13.5",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"cursor-tools": "latest",
"esbuild": "^0.25.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"prettier": "^3.5.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.36.3",
"@browserbasehq/stagehand": "1.13.0",
"@modelcontextprotocol/sdk": "^1.5.0",
"dotenv": "16.4.7",
"eventsource-client": "1.1.3",
"openai": "^4.85.3",
"punycode": "^2.3.1",
"repomix": "0.2.29",
"zod": "3.24.2"
},
"peerDependencies": {
"playwright": "1.50.1"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"punycode": "^2.3.1"
}
}