-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.47 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.47 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
100
101
102
103
104
{
"name": "@unbrained/pm-cli",
"version": "2026.3.12",
"description": "Git-native project management CLI for humans and agents.",
"type": "module",
"author": "unbrained",
"homepage": "https://github.com/unbrained/pm-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/unbrained/pm-cli.git"
},
"bugs": {
"url": "https://github.com/unbrained/pm-cli/issues"
},
"bin": {
"pm": "dist/cli.js"
},
"types": "dist/sdk/index.d.ts",
"exports": {
".": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js",
"default": "./dist/sdk/index.js"
},
"./sdk": {
"types": "./dist/sdk/index.d.ts",
"import": "./dist/sdk/index.js",
"default": "./dist/sdk/index.js"
},
"./cli": {
"types": "./dist/cli/main.d.ts",
"import": "./dist/cli/main.js",
"default": "./dist/cli/main.js"
},
"./package.json": "./package.json"
},
"files": [
"dist/**",
"README.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"SECURITY.md",
"CODE_OF_CONDUCT.md",
"LICENSE",
"AGENTS.md",
"PRD.md",
"docs/**",
".agents/pm/extensions/**",
"scripts/install.sh",
"scripts/install.ps1"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"start": "node dist/cli.js",
"dev": "tsx src/cli.ts",
"test": "pnpm build && vitest run",
"test:coverage": "pnpm build && vitest run --coverage",
"version:check": "node scripts/release-version.mjs check",
"version:next": "node scripts/release-version.mjs next",
"security:scan": "node scripts/check-secrets.mjs",
"smoke:npx": "node scripts/smoke-npx-from-pack.mjs",
"prepublishOnly": "pnpm build"
},
"keywords": [
"cli",
"project-management",
"agents",
"ai",
"git-native",
"typescript",
"task-tracker",
"coding-agents"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@toon-format/toon": "latest",
"commander": "latest",
"fast-glob": "^3.3.3",
"fast-json-patch": "latest",
"undici": "latest",
"zod": "latest"
},
"devDependencies": {
"@types/node": "latest",
"@vitest/coverage-v8": "^4.1.2",
"c8": "^11.0.0",
"tsx": "latest",
"typescript": "latest",
"vitest": "^4.1.2"
},
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"brace-expansion": ">=5.0.5"
}
}
}