-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "scafld",
"version": "1.6.0",
"description": "Spec-driven development framework for AI coding agents",
"author": "0state",
"license": "MIT",
"scripts": {
"version:bump": "python3 scripts/bump_version.py",
"version:check": "python3 scripts/sync_version.py --check",
"version:sync": "python3 scripts/sync_version.py --write",
"prepack": "python3 scripts/sync_version.py --check --quiet"
},
"homepage": "https://0state.com/scafld",
"repository": {
"type": "git",
"url": "git+https://github.com/nilstate/scafld.git"
},
"bugs": {
"url": "https://github.com/nilstate/scafld/issues"
},
"bin": {
"scafld": "cli/scafld"
},
"files": [
"cli/scafld",
".ai/OPERATORS.md",
".ai/README.md",
".ai/config.yaml",
".ai/prompts",
".ai/schemas",
".ai/specs/README.md",
".ai/specs/examples",
"scripts/scafld-provider-adapter.sh",
"scripts/scafld-codex-build.sh",
"scripts/scafld-codex-review.sh",
"scripts/scafld-claude-build.sh",
"scripts/scafld-claude-review.sh",
"scafld/*.py",
"scafld/**/*.py",
"AGENTS.md",
"CLAUDE.md",
"CONVENTIONS.md",
"README.md",
"LICENSE",
"install.sh"
],
"keywords": [
"ai",
"cli",
"developer-tools",
"planning",
"spec-driven"
]
}