-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.33 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
{
"name": "agentic-pm-kit",
"version": "0.1.1",
"description": "Free MIT-licensed installer for Agent Skills that turn Claude Code and Gemini CLI into competent drafters of PMBOK- and Scrum-shaped project management artifacts.",
"type": "module",
"bin": {
"agentic-pm-kit": "./bin/agentic-pm-kit.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "bun run src/bin.ts",
"prepublishOnly": "npm run typecheck && npm run build"
},
"license": "MIT",
"author": "Agentic Engineering Agency",
"repository": {
"type": "git",
"url": "git+https://github.com/Agentic-Engineering-Agency/agentic-pm-kit.git"
},
"homepage": "https://labs.agenticengineering.agency/docs/pm-kit",
"bugs": {
"url": "https://github.com/Agentic-Engineering-Agency/agentic-pm-kit/issues"
},
"keywords": [
"agent-skills",
"claude-code",
"gemini-cli",
"project-management",
"pmbok",
"scrum"
],
"files": [
"dist",
"bin",
"skills",
"vendor",
"docs",
".claude-plugin",
"gemini-extension.json",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"README.md"
],
"dependencies": {
"@clack/prompts": "1.2.0",
"chalk": "5.6.2"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
}
}