-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.69 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
{
"name": "@zakelfassi/skdd",
"version": "1.1.0",
"publishConfig": {
"access": "public"
},
"description": "Skills-Driven Development CLI — validate, init, forge, list, link, doctor, and import SkDD skill colonies. Manages the canonical skills/ + harness mirror pattern and consolidates duplicate skills across harness mirrors.",
"type": "module",
"bin": {
"skdd": "dist/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.0.0",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write ."
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"commander": "^12.1.0",
"gray-matter": "^4.0.3",
"ink": "^7.0.5",
"picocolors": "^1.1.0",
"react": "^19.2.7",
"smol-toml": "^1.6.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.16",
"@types/node": "^20.0.0",
"@types/react": "^19.2.17",
"ink-testing-library": "^4.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"keywords": [
"skills-driven-development",
"skdd",
"agent-skills",
"agentskills.io",
"ai-agents",
"claude-code",
"codex",
"cursor",
"copilot"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zakelfassi/skills-driven-development.git",
"directory": "cli"
},
"homepage": "https://github.com/zakelfassi/skills-driven-development#readme"
}