boringpm 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +170 -0
- package/dist/api.js +487 -0
- package/dist/auth-store.js +50 -0
- package/dist/index.js +786 -0
- package/dist/types.js +10 -0
- package/package.json +34 -0
package/dist/types.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const TASK_STATUSES = [
|
|
2
|
+
"pending",
|
|
3
|
+
"in_progress",
|
|
4
|
+
"testing",
|
|
5
|
+
"completed",
|
|
6
|
+
"archived",
|
|
7
|
+
];
|
|
8
|
+
export const PLAN_SPEC_STATUSES = ["draft", "approved", "deprecated"];
|
|
9
|
+
export const TEST_SCENARIO_STATUSES = ["pending", "pass", "fail", "blocked"];
|
|
10
|
+
export const TEST_SCENARIO_TYPES = ["manual", "automated", "integration", "e2e"];
|
package/package.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "boringpm",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.2",
|
|
5
|
+
"description": "Project manager CLI for scripts, automation, and agent workflows",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"bin": {
|
|
8
|
+
"boringpm": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"dev": "tsx src/index.ts",
|
|
19
|
+
"build": "tsc -p tsconfig.json",
|
|
20
|
+
"prepack": "npm run build",
|
|
21
|
+
"start": "node dist/index.js",
|
|
22
|
+
"lint": "tsc --noEmit"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@clack/prompts": "^0.11.0",
|
|
26
|
+
"commander": "^14.0.1",
|
|
27
|
+
"zod": "^3.25.76"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@types/node": "^24.3.0",
|
|
31
|
+
"tsx": "^4.20.5",
|
|
32
|
+
"typescript": "^5.9.2"
|
|
33
|
+
}
|
|
34
|
+
}
|