-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2 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
82
83
84
85
86
87
{
"name": "afdocs",
"version": "0.7.2",
"description": "Test your documentation site against the Agent-Friendly Documentation Spec",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"afdocs": "bin/afdocs.mjs"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./helpers": {
"types": "./dist/helpers/index.d.ts",
"import": "./dist/helpers/index.js",
"default": "./dist/helpers/index.js"
}
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"lint": "eslint . && tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky",
"prepublishOnly": "npm run lint && npm test && npm run build"
},
"lint-staged": {
"*.{ts,js,mjs}": [
"prettier --write",
"eslint --fix"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"keywords": [
"agent",
"documentation",
"testing",
"llms-txt",
"agent-friendly"
],
"files": [
"dist/",
"bin/"
],
"repository": {
"type": "git",
"url": "https://github.com/agent-ecosystem/afdocs.git"
},
"bugs": {
"url": "https://github.com/agent-ecosystem/afdocs/issues"
},
"homepage": "https://github.com/agent-ecosystem/afdocs",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"node-html-parser": "^7.1.0",
"turndown": "^7.2.2",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.13.4",
"@types/turndown": "^5.0.6",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"msw": "^2.7.3",
"prettier": "^3.8.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.56.0",
"vitest": "^4.0.18"
}
}