-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 933 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 933 Bytes
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
{
"name": "devflow-native",
"version": "0.1.15",
"description": "Repo-local evidence gates and handoffs for AI coding agents.",
"license": "MIT",
"type": "module",
"bin": {
"devflow": "packages/cli/src/index.js"
},
"files": [
"AGENTS.md",
"README.md",
"README.ko.md",
"docs/**/*.md",
"packages/",
"plugins/",
"scripts/",
"skills/"
],
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sungblab/devflow-native.git"
},
"scripts": {
"docs:check": "node scripts/check-doc-links.mjs",
"host:smoke": "node packages/cli/src/index.js harness smoke --json",
"mcp:stdio": "node packages/mcp/src/stdio.js",
"pack:check": "node scripts/check-package-install.mjs",
"publish:check": "npm run docs:check && npm test && npm run pack:check && node scripts/check-npm-publish.mjs",
"test": "node --test"
}
}