@mstar-harness/cli 0.2.0

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.
Files changed (2) hide show
  1. package/dist/mstar-harness.js +4727 -0
  2. package/package.json +35 -0
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "@mstar-harness/cli",
3
+ "version": "0.2.0",
4
+ "description": "Morning Star harness installer CLI (OpenCode, Cursor).",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/btspoony/mstar-harness.git",
9
+ "directory": "packages/cli"
10
+ },
11
+ "type": "module",
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "bin": {
16
+ "mstar-harness": "dist/mstar-harness.js"
17
+ },
18
+ "scripts": {
19
+ "dev": "bun run src/index.ts",
20
+ "build": "rm -rf dist && bun build src/index.ts --target node --outfile dist/mstar-harness.js",
21
+ "check": "bun run src/index.ts --help",
22
+ "prepublishOnly": "bun run build && bun run check"
23
+ },
24
+ "engines": {
25
+ "bun": ">=1.2.17"
26
+ },
27
+ "dependencies": {
28
+ "@inquirer/prompts": "^8.4.2",
29
+ "commander": "^14.0.3",
30
+ "picocolors": "^1.1.1"
31
+ },
32
+ "publishConfig": {
33
+ "access": "public"
34
+ }
35
+ }