-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.19 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "vibex",
"version": "0.1.0",
"description": "Open-source AI agent platform for generating, deploying, and managing full-stack applications through natural language.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ravisojitra/vibex.git"
},
"homepage": "https://github.com/ravisojitra/vibex",
"bugs": {
"url": "https://github.com/ravisojitra/vibex/issues"
},
"keywords": [
"ai",
"agent",
"code-generation",
"fullstack",
"llm",
"developer-tools"
],
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
},
"devDependencies": {
"prettier": "^3.6.2",
"turbo": "^2.5.5",
"typescript": "5.8.3"
},
"packageManager": "bun@1.3.5",
"engines": {
"node": "22.x"
},
"dependencies": {
"rehype-pretty-code": "^0.14.1",
"shiki": "^3.20.0"
}
}