-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.38 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.38 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
{
"name": "vibe",
"version": "0.1.8",
"private": false,
"description": "Secure agentic browser with intelligent, memory-enhanced web browsing by CoBrowser",
"repository": {
"type": "git",
"url": "https://github.com/co-browser/vibe.git"
},
"bugs": {
"url": "https://github.com/co-browser/vibe/issues"
},
"homepage": "https://cobrowser.xyz",
"keywords": [
"ai",
"automation",
"desktop",
"electron",
"mcp",
"claude"
],
"packageManager": "[email protected]",
"scripts": {
"postinstall": "husky && turbo run build",
"prepare": "husky",
"dev": "node scripts/dev.js",
"build": "turbo run build --filter=@vibe/shared-types && turbo run build",
"build:mac": "turbo run build --filter=@vibe/mcp-* && pnpm --filter vibe build:mac",
"build:win": "turbo run build --filter=@vibe/mcp-* && pnpm --filter @vibe/electron-app build:win",
"build:linux": "turbo run build --filter=@vibe/mcp-* && pnpm --filter @vibe/electron-app build:linux",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fix": "pnpm format && pnpm lint:fix",
"dist": "pnpm --filter @vibe/electron-app dist",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test",
"setup": "pnpm install && git submodule update --init --recursive",
"kill-port": "node scripts/kill-port.js"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@electron/rebuild": "^4.0.1",
"@eslint/js": "^9.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"concurrently": "^9.1.2",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv": "^16.4.0",
"dotenv-cli": "^7.4.4",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^9.1.7",
"semantic-release": "^24.0.0",
"semantic-release-export-data": "^1.1.0",
"turbo": "^2.3.3",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron"
]
}
}