-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.28 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": "zest-dev",
"version": "1.0.10",
"description": "A lightweight, human-interactive development workflow for AI-assisted coding",
"author": {
"name": "nettee",
"email": "nettee.liu@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nettee/zest-dev.git"
},
"license": "MIT",
"keywords": [
"workflow",
"development",
"cli",
"ai",
"spec"
],
"main": "index.js",
"bin": {
"zest-dev": "./bin/zest-dev.js"
},
"files": [
"bin/",
"commands/",
"skills/",
"agents/",
"lib/",
"scripts/",
"plugin/",
"index.js",
"README.md",
"LICENSE"
],
"scripts": {
"postinstall": "node scripts/ensure-plugin-symlinks.js",
"test": "pnpm test:local",
"test:ci-version-freshness": "node scripts/ci/test-check-version-freshness.js",
"test:ci-pr-bump": "node scripts/ci/test-should-bump-pr-version.js",
"test:ci-publish": "node scripts/ci/test-check-npm-version.js",
"test:ci-archive-specs": "node scripts/ci/test-archive-old-specs.js",
"test:local": "cd e2e && uv run ./run_e2e_local",
"test:package": "cd e2e && uv run ./run_e2e_package"
},
"pnpm": {
"nodeLinker": "hoisted"
},
"dependencies": {
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
}
}