-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 864 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 864 Bytes
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
{
"name": "agent-docs",
"version": "1.0.0",
"private": true,
"description": "Project docs that answer locally before the web — Agent Skills for AI coding agents.",
"author": {
"name": "Médéric Hurier",
"email": "github@fmind.dev",
"url": "https://fmind.dev"
},
"homepage": "https://github.com/fmind/agent-docs",
"repository": "https://github.com/fmind/agent-docs",
"license": "MIT",
"keywords": [
"agentic-coding",
"agent-skills",
"documentation",
"agent-docs",
"gemini-cli",
"claude-code",
"github-copilot"
],
"scripts": {
"lint": "prettier --check \"**/*.{md,json,yml,yaml,mjs}\" && markdownlint-cli2",
"format": "prettier --write \"**/*.{md,json,yml,yaml,mjs}\" && markdownlint-cli2 --fix"
},
"devDependencies": {
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3"
}
}