-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 1.75 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
79
80
81
{
"name": "@faruhe/tkcli",
"version": "0.1.1",
"publishConfig": {
"access": "public"
},
"description": "Scaffold AI-ready projects with CLAUDE.md, AGENTS.md, Cursor, Windsurf, Copilot rules, and synced project context.",
"type": "module",
"author": "faruhe",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/faruheaisha/tkcli.git"
},
"homepage": "https://github.com/faruheaisha/tkcli#readme",
"bugs": {
"url": "https://github.com/faruheaisha/tkcli/issues"
},
"bin": {
"tk": "dist/index.js"
},
"files": [
"dist/",
"assets/",
"src/templates/",
"README.md",
"README.zh.md",
"LICENSE",
"CHANGELOG.md",
"QUALITY_SCORECARD.md"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"check": "npm run build && npm test",
"verify:scaffolds": "npm run build && node scripts/verify-scaffolds.mjs",
"pack:dry-run": "npm pack --dry-run"
},
"keywords": [
"cli",
"scaffold",
"boilerplate",
"ai",
"ai-tools",
"claude-code",
"claude-md",
"agents-md",
"cursor",
"windsurf",
"copilot",
"github-copilot",
"mcp",
"model-context-protocol",
"code-generator",
"project-template",
"typescript",
"developer-tools"
],
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"handlebars": "^4.7.8",
"inquirer": "^12.5.2"
},
"devDependencies": {
"@types/node": "^22.14.0",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"esbuild": "^0.28.1"
}
}