@proletariat/cli 0.3.18 → 0.3.19
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/LICENSE +21 -0
- package/bin/dev.js +0 -0
- package/oclif.manifest.json +2819 -2819
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proletariat/cli",
|
|
3
3
|
"description": "Agent orchestration platform for AI labor - Spin up workers on demand for multi-agent development",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.19",
|
|
5
5
|
"author": "Chris McDermut",
|
|
6
6
|
"publishConfig": {
|
|
7
7
|
"access": "public"
|
|
@@ -104,6 +104,7 @@
|
|
|
104
104
|
"type": "git",
|
|
105
105
|
"url": "https://github.com/chrismcdermut/proletariat-cli.git"
|
|
106
106
|
},
|
|
107
|
+
"types": "dist/index.d.ts",
|
|
107
108
|
"scripts": {
|
|
108
109
|
"postinstall": "npm rebuild better-sqlite3 2>/dev/null || true",
|
|
109
110
|
"build": "shx rm -rf dist && tsc -b",
|
|
@@ -114,16 +115,16 @@
|
|
|
114
115
|
"lint:all": "eslint && tsc --noEmit",
|
|
115
116
|
"lint:fix": "eslint --fix",
|
|
116
117
|
"typecheck": "tsc --noEmit",
|
|
117
|
-
"postpack": "shx rm -f oclif.manifest.json",
|
|
118
118
|
"posttest": "pnpm run lint",
|
|
119
|
-
"prepack": "oclif manifest && oclif readme",
|
|
120
119
|
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
|
|
121
120
|
"test:unit": "mocha --forbid-only \"test/unit/**/*.test.ts\"",
|
|
122
121
|
"test:e2e": "mocha --forbid-only \"test/e2e/**/*.test.ts\"",
|
|
123
122
|
"test:e2e:pmo": "mocha --forbid-only \"test/e2e/pmo-*.test.ts\"",
|
|
124
123
|
"test:commands": "mocha --forbid-only \"test/commands/**/*.test.ts\"",
|
|
125
124
|
"version": "oclif readme && git add README.md",
|
|
125
|
+
"release:patch": "npm version patch --no-git-tag-version && pnpm build && pnpm publish --access public --no-git-checks",
|
|
126
|
+
"release:minor": "npm version minor --no-git-tag-version && pnpm build && pnpm publish --access public --no-git-checks",
|
|
127
|
+
"release:major": "npm version major --no-git-tag-version && pnpm build && pnpm publish --access public --no-git-checks",
|
|
126
128
|
"roadmap:generate": "node ./bin/run.js roadmap generate --all"
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
}
|
|
129
|
+
}
|
|
130
|
+
}
|