-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.41 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.41 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
{
"name": "@vibecode/blueprint",
"version": "1.0.0",
"description": "Collaborative Vibecoding Blueprint - A template for AI-assisted collaborative development projects",
"type": "module",
"main": "src/setup.js",
"bin": {
"vibecode-setup": "./src/setup.js"
},
"scripts": {
"setup": "node src/setup.js",
"test-setup": "node src/test-setup.js",
"dev": "node src/setup.js --dev",
"test": "node --test src/mcp-memory/test/**/*.test.js",
"lint": "eslint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate": "npm run lint && npm run format:check && npm test"
},
"keywords": [
"ai-coding",
"collaborative-development",
"blueprint",
"template",
"vibecoding",
"monorepo"
],
"author": "Vibecode Team",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"dependencies": {
"better-sqlite3": "^9.2.2",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"handlebars": "^4.7.8",
"inquirer": "^9.2.12",
"ora": "^7.0.1",
"validate-npm-package-name": "^5.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.10.0",
"eslint": "^8.56.0",
"globals": "^17.0.0",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
},
"pnpm": {
"overrides": {
"semver": "^7.5.4"
}
}
}