@aopslab/domain-tooling-docman 0.1.4
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 +202 -0
- package/NOTICE +6 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +1 -0
- package/dist/manifests/agent-manifest.json +4071 -0
- package/dist/manifests/cli-manifest.json +18796 -0
- package/dist/manifests/dcm.json +6456 -0
- package/dist/manifests/host-routes.json +597 -0
- package/dist/manifests/operations.json +2050 -0
- package/dist/tools.d.ts +96 -0
- package/dist/tools.js +926 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@aopslab/domain-tooling-docman",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"private": false,
|
|
6
|
+
"description": "Docman shared tooling surface (CLI/MCP/AOPS wrappers).",
|
|
7
|
+
"main": "./dist/index.js",
|
|
8
|
+
"module": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json",
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js",
|
|
15
|
+
"default": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"!**/*.tsbuildinfo",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"NOTICE"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@aopslab/xf-validation": "0.1.80",
|
|
26
|
+
"zod": "4.4.3",
|
|
27
|
+
"@aopslab/domain-kit-docman": "0.1.4",
|
|
28
|
+
"@aopslab/domain-ops-docman": "0.1.4"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public",
|
|
32
|
+
"registry": "https://registry.npmjs.org"
|
|
33
|
+
},
|
|
34
|
+
"license": "Apache-2.0",
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/eeemzs/docman.git",
|
|
38
|
+
"directory": "docman-tooling"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -b tsconfig.lib.json",
|
|
42
|
+
"postbuild": "pnpm run manifest:emit",
|
|
43
|
+
"manifest:print": "tsx scripts/manifest-cli.ts print --kind all",
|
|
44
|
+
"manifest:emit": "tsx scripts/manifest-cli.ts emit --kind all --out-dir dist/manifests",
|
|
45
|
+
"manifest:check": "tsx scripts/manifest-cli.ts check --kind all --out-dir dist/manifests",
|
|
46
|
+
"manifest:sync": "pnpm run build && pnpm run manifest:check"
|
|
47
|
+
}
|
|
48
|
+
}
|