forked from eastlondoner/vibe-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.6 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.6 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "vibe-tools",
"description": "CLI tools for AI agents",
"keywords": [
"cursor",
"vibe",
"tools",
"ai",
"assistant"
],
"version": "0.63.3",
"type": "module",
"main": "./dist/index.mjs",
"bin": {
"vibe-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 \"infra/**/*.{ts,tsx,js,jsx,json,md,vue}\" \"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"
],
"exports": {
".": "./dist/index.mjs",
"./llms": "./dist/llms/index.mjs"
},
"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": {
"@anthropic-ai/sdk": "^0.56.0",
"@browserbasehq/sdk": "^2.6.0",
"@browserbasehq/stagehand": "^2.4.1",
"@eslint/js": "^9.31.0",
"@modelcontextprotocol/sdk": "^1.15.1",
"@playwright/test": "1.54.1",
"@types/bun": "^1.2.18",
"@types/node": "^24.0.14",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"consola": "^3.4.2",
"esbuild": "^0.25.6",
"eslint": "^9.31.0",
"fast-glob": "^3.3.3",
"formdata-node": "^6.0.3",
"globals": "^16.3.0",
"openai": "^5.9.2",
"p-queue": "^8.1.0",
"prettier": "^3.6.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vibe-rules": "^0.3.50",
"vitest": "^3.2.4",
"zod": "4.0.5"
},
"dependencies": {
"dotenv": "17.2.0",
"eventsource-client": "1.1.4",
"google-auth-library": "^10.1.0",
"open": "^10.2.0",
"playwright": "1.54.1",
"playwright-core": "1.54.1",
"punycode": "^2.3.1",
"repomix": "1.1.0"
},
"engines": {
"node": ">=18.0.0"
},
"overrides": {
"punycode": "^2.3.1",
"playwright-core": "1.54.1",
"@playwright/test": "1.54.1",
"playwright": "1.54.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"playwright-core": "1.54.1",
"@playwright/test": "1.54.1",
"playwright": "1.54.1"
}
},
"packageManager": "pnpm@10.13.1"
}