-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.23 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
{
"name": "speclet",
"version": "0.3.2",
"description": "Spec-driven development CLI — native slash commands for Copilot Chat, Claude Code, Cursor, Mistral Vibe, Command Code, and Antigravity CLI",
"keywords": [
"cli",
"ai",
"copilot",
"claude",
"cursor",
"vibe",
"commandcode",
"antigravity",
"spec",
"tasks",
"developer-tools"
],
"author": "Md Al Mahmud Imran <md.almahmudimran@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Shawn-Imran/speclet.git"
},
"homepage": "https://github.com/Shawn-Imran/speclet#readme",
"bugs": {
"url": "https://github.com/Shawn-Imran/speclet/issues"
},
"main": "dist/cli.js",
"bin": {
"speclet": "dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"ora": "^8.0.1"
},
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.0.0",
"ts-node": "^10.9.0"
},
"type": "module"
}