-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.41 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
{
"name": "create-ai-agents-docs",
"version": "1.0.1",
"description": "Scaffold AI agent-friendly documentation in any repository",
"type": "module",
"bin": {
"create-ai-agents-docs": "./bin/create-ai-agents-docs.js"
},
"files": [
"bin/",
"lib/",
"templates/"
],
"scripts": {
"build": "npm run test && npm run lint && npm run format:check",
"docs:build": "node docs/build.mjs",
"docs:preview": "npm run docs:build && npx serve docs/dist",
"format": "prettier --write lib/ bin/ test/ docs/build.mjs docs/template.html '*.md' eslint.config.js package.json",
"format:check": "prettier --check lib/ bin/ test/ docs/build.mjs docs/template.html '*.md' eslint.config.js package.json",
"lint": "eslint lib/ bin/ test/",
"pack": "npm pack --dry-run",
"prepublishOnly": "npm run build",
"test": "node --test test/*.test.js",
"test:coverage": "mkdir -p coverage && node --test --experimental-test-isolation=none --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info --test-reporter=spec --test-reporter-destination=stdout test/*.test.js"
},
"keywords": [
"ai",
"agents",
"documentation",
"scaffold",
"cli",
"create"
],
"author": "Bence A. Toth",
"license": "MIT",
"engines": {
"node": ">=20"
},
"devDependencies": {
"eslint": "^9.0.0",
"marked": "^18.0.4",
"prettier": "^3.0.0"
}
}