-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.8 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.8 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
{
"name": "claude-code-starter",
"version": "0.17.0",
"description": "A lightweight starter kit for AI-assisted development with Claude Code",
"keywords": [
"claude",
"ai",
"development",
"framework",
"cli",
"anthropic",
"claude-code"
],
"author": "Cassiano Montanari",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/cassmtnr/claude-code-starter.git"
},
"homepage": "https://github.com/cassmtnr/claude-code-starter#readme",
"bin": {
"claude-code-starter": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun run tsup",
"dev": "bun run tsup --watch",
"start": "bun dist/cli.js",
"test": "bun test src/cli.test.ts",
"test:e2e": "bun run build && bun test src/cli.e2e.test.ts",
"test:all": "bun run build && bun test",
"typecheck": "bun run tsc --noEmit",
"lint": "biome lint src/",
"lint:fix": "biome lint --write src/",
"format": "biome format --write src/",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"prepare": "git config core.hooksPath .githooks",
"prepublishOnly": "bun run build && bun run test && bun test src/cli.e2e.test.ts"
},
"dependencies": {
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@biomejs/biome": "^2.3.12",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/bun": "latest",
"@types/prompts": "^2.4.9",
"conventional-changelog-conventionalcommits": "^8.0.0",
"semantic-release": "^24.2.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0"
}
}