forked from AIGNE-io/aigne-doc-smith
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.73 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.73 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@aigne/doc-smith",
"version": "0.9.7",
"description": "AI-driven documentation generation tool built on the AIGNE Framework",
"publishConfig": {
"access": "public"
},
"files": [
"agents",
"assets/report-template",
"docs-mcp",
"prompts",
"types",
"utils",
"aigne.yaml",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "index.js",
"scripts": {
"test": "bun test --preload ./tests/setup/mock-process-exit.mjs",
"test:coverage2": "bun test --preload ./tests/setup/mock-process-exit.mjs --coverage",
"test:coverage": "bun test --preload ./tests/setup/mock-process-exit.mjs --coverage --coverage-reporter=lcov --coverage-reporter=text",
"test:deploy": "bun test --preload ./tests/setup/mock-process-exit.mjs tests/utils/deploy.test.mjs --coverage --coverage-reporter=text",
"test:user-review": "bun test --preload ./tests/setup/mock-process-exit.mjs tests/agents/update/user-review-document.test.mjs --coverage --coverage-reporter=lcov --coverage-reporter=text",
"test:watch": "bun test --preload ./tests/setup/mock-process-exit.mjs --watch",
"lint": "biome lint && biome format",
"update:deps": "npx -y taze major -r -w -f -n '/@abtnode|@aigne|@arcblock|@blocklet|@did-connect|@did-pay|@did-space|@nft-store|@nft-studio|@ocap/' && pnpm install && pnpm run deduplicate",
"deduplicate": "pnpm dedupe",
"lint:fix": "biome lint --write && biome format --write"
},
"type": "module",
"bin": "aigne.yaml",
"keywords": [],
"author": "Arcblock <blocklet@arcblock.io> https://github.com/blocklet",
"license": "Elastic-2.0",
"dependencies": {
"@aigne/cli": "^1.56.0",
"@aigne/core": "^1.69.0",
"@aigne/publish-docs": "^0.14.1",
"@aigne/secrets": "^0.1.1-beta.3",
"@blocklet/payment-broker-client": "^1.22.24",
"@terrastruct/d2": "^0.1.33",
"chalk": "^5.5.0",
"debug": "^4.4.1",
"diff": "^8.0.2",
"dompurify": "^3.2.6",
"fast-deep-equal": "^3.1.3",
"file-type": "^21.0.0",
"fs-extra": "^11.3.1",
"glob": "^11.0.3",
"gpt-tokenizer": "^3.2.0",
"image-size": "^2.0.2",
"is-in-ci": "^2.0.0",
"isbinaryfile": "^5.0.6",
"jsdom": "^26.1.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"mermaid": "^11.9.0",
"minimatch": "^10.1.1",
"open": "^10.2.0",
"p-limit": "^7.1.1",
"p-map": "^7.0.3",
"p-retry": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-lint": "^10.0.1",
"remark-parse": "^11.0.0",
"typescript": "^5.9.3",
"ufo": "^1.6.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"vfile": "^6.0.3",
"yaml": "^2.8.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4"
}
}