@pieai/doc-gov 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +65 -0
- package/cli-guide.md +89 -0
- package/dist/cli.js +2387 -0
- package/package.json +53 -0
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pieai/doc-gov",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "AI-native documentation governance CLI for project docs, agent routing, and lifecycle checks.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"ai-agents",
|
|
7
|
+
"documentation",
|
|
8
|
+
"governance",
|
|
9
|
+
"cli",
|
|
10
|
+
"project-management",
|
|
11
|
+
"markdown"
|
|
12
|
+
],
|
|
13
|
+
"homepage": "https://github.com/PieAIStudio/project-governance-system#readme",
|
|
14
|
+
"bugs": {
|
|
15
|
+
"url": "https://github.com/PieAIStudio/project-governance-system/issues"
|
|
16
|
+
},
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"author": "PieAI <PIEAI@hotmail.com>",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/PieAIStudio/project-governance-system.git",
|
|
22
|
+
"directory": "packages/doc-gov"
|
|
23
|
+
},
|
|
24
|
+
"bin": {
|
|
25
|
+
"doc-gov": "dist/cli.js"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"README.md",
|
|
30
|
+
"LICENSE",
|
|
31
|
+
"cli-guide.md"
|
|
32
|
+
],
|
|
33
|
+
"type": "module",
|
|
34
|
+
"publishConfig": {
|
|
35
|
+
"access": "public"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"dev": "tsx src/cli.ts",
|
|
39
|
+
"build": "node node_modules/esbuild/bin/esbuild src/cli.ts --bundle --platform=node --format=esm --target=node22 --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js && chmod +x dist/cli.js",
|
|
40
|
+
"prepack": "pnpm build",
|
|
41
|
+
"test": "tsx --test src/**/*.test.ts",
|
|
42
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@types/node": "25.0.0",
|
|
46
|
+
"esbuild": "0.27.7",
|
|
47
|
+
"tsx": "4.21.0",
|
|
48
|
+
"typescript": "6.0.3"
|
|
49
|
+
},
|
|
50
|
+
"engines": {
|
|
51
|
+
"node": ">=22.12.0"
|
|
52
|
+
}
|
|
53
|
+
}
|