-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.44 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.44 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
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@wesleysimplicio/llm-project-mapper",
"version": "0.4.2",
"description": "AI-friendly project scaffold with AGENTS.md ecosystem (Claude Code, Codex, Copilot, Cursor, Aider, Hermes, OpenClaw). Specs as code, atomic tasks, automated Definition of Done, reusable skills, multi-agent ready.",
"type": "commonjs",
"bin": {
"llm-project-mapper": "bin/cli.js",
"build-hamt-catalog": "bin/build-hamt-catalog"
},
"files": [
"LICENSE",
"CHANGELOG.md",
"PRIVACY.md",
"SHOWCASE.md",
"bin/",
"AGENTS.md",
"CLAUDE.md",
"INIT.md",
"INIT.en.md",
"_BOOTSTRAP.md",
"YOOL_TUPLE_HAMT.md",
"README.md",
"README.pt-BR.md",
"INSTALL.md",
"INSTALL.en.md",
"assets/",
"docs/",
"scripts/",
".agents/",
".claude/",
".codex/",
".github/",
".skills/",
".specs/",
"bootstrap.sh",
"bootstrap.ps1",
"playwright.config.ts",
"tests/"
],
"engines": {
"node": ">=16.7.0"
},
"keywords": [
"llm-project-mapper",
"ai-agent",
"agents",
"agents-md",
"claude-code",
"codex",
"copilot",
"cursor",
"aider",
"hermes",
"openclaw",
"scaffold",
"starter",
"bootstrap",
"specs",
"playwright",
"ralph-loop",
"tdd",
"ddd"
],
"author": {
"name": "Wesley Simplicio",
"email": "wesleybob4@gmail.com",
"url": "https://github.com/wesleysimplicio"
},
"license": "MIT",
"homepage": "https://github.com/wesleysimplicio/llm-project-mapper#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wesleysimplicio/llm-project-mapper.git"
},
"bugs": {
"url": "https://github.com/wesleysimplicio/llm-project-mapper/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"test:cli": "node bin/cli.js --help",
"test:e2e": "playwright test",
"lint": "node scripts/lint.js",
"lint:fix": "node scripts/lint.js --fix",
"docs:sync": "node scripts/sync-docs-site.mjs",
"docs:build": "npm --prefix docs-site run build",
"docs:start": "npm --prefix docs-site run start",
"docs:version": "npm --prefix docs-site run docs:version --",
"evidence": "playwright test --project=chromium",
"pack:dry": "npm pack --dry-run",
"release": "npm publish --access public"
},
"devDependencies": {
"@playwright/test": "^1.59.1"
}
}