-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.03 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.03 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
{
"name": "roboco",
"version": "0.1.0",
"description": "AI-native development scaffolding system for vibe coding with Claude Code",
"type": "module",
"bin": {
"roboco": "./dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit/",
"test:integration": "vitest run tests/integration/",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:all": "vitest run && vitest run --config vitest.e2e.config.ts",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"typecheck": "tsc --noEmit",
"validate": "npm run typecheck && npm run lint && npm run test && npm run build",
"prepare": "husky",
"prepublishOnly": "npm run validate"
},
"engines": {
"node": ">=24.0.0"
},
"files": [
"dist",
"templates"
],
"keywords": [
"claude-code",
"vibe-coding",
"scaffolding",
"ai-native",
"developer-tools"
],
"author": "ROBOCO <contact@roboco.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/roboco-io/roboco-cli.git"
},
"bugs": {
"url": "https://github.com/roboco-io/roboco-cli/issues"
},
"homepage": "https://github.com/roboco-io/roboco-cli#readme",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.92",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"ora": "^9.3.0"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}