arashi 1.18.0 → 1.19.1

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/README.md +2 -2
  2. package/package.json +27 -24
package/README.md CHANGED
@@ -103,8 +103,8 @@ Invoke-WebRequest -Uri "https://github.com/corwinm/arashi/releases/latest/downlo
103
103
  You can also build from source for local development:
104
104
 
105
105
  ```bash
106
- bun install
107
- bun run build
106
+ pnpm install
107
+ pnpm run build
108
108
  ```
109
109
 
110
110
  ## Command Surface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arashi",
3
- "version": "1.18.0",
3
+ "version": "1.19.1",
4
4
  "description": "Git worktree manager for meta-repositories - The eye of the storm for your development workflow",
5
5
  "keywords": [
6
6
  "cli",
@@ -48,51 +48,54 @@
48
48
  ],
49
49
  "type": "module",
50
50
  "scripts": {
51
- "dev": "bun run src/index.ts",
51
+ "dev": "node src/index.ts",
52
52
  "build": "bun build src/index.ts --compile --minify --outfile bin/arashi.bin",
53
53
  "build:debug": "bun build src/index.ts --compile --sourcemap --outfile bin/arashi.bin",
54
- "build:all": "bun run build:mac && bun run build:linux && bun run build:windows",
54
+ "build:all": "pnpm run build:mac && pnpm run build:linux && pnpm run build:windows",
55
55
  "build:mac": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile bin/arashi-macos-arm64",
56
56
  "build:linux": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile bin/arashi-linux-x64",
57
57
  "build:windows": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile bin/arashi-windows-x64.exe",
58
- "test": "bun run scripts/test/run-tests.ts",
58
+ "test": "node scripts/test/run-tests.ts",
59
59
  "typecheck": "tsc --noEmit",
60
60
  "lint": "oxlint -D no-explicit-any .",
61
61
  "lint:fix": "oxlint --fix -D no-explicit-any .",
62
62
  "lint:ci": "oxlint --format github -D no-explicit-any .",
63
63
  "schema:generate": "ts-json-schema-generator --tsconfig tsconfig.schema.json --path src/lib/config.ts --type Config --expose export --jsDoc extended --out schema/config.schema.json",
64
- "schema:publish": "bun run schema:generate && oxfmt --config .oxfmtrc.json --write schema/config.schema.json",
65
- "schema:check": "bun run schema:publish && git diff --exit-code -- schema/config.schema.json",
64
+ "schema:publish": "pnpm run schema:generate && oxfmt --config .oxfmtrc.json --write schema/config.schema.json",
65
+ "schema:check": "pnpm run schema:publish && git diff --exit-code -- schema/config.schema.json",
66
+ "contract:generate": "node scripts/contracts/cli-commands.ts",
67
+ "contract:check": "node scripts/contracts/cli-commands.ts --check",
66
68
  "format": "oxfmt --config .oxfmtrc.json --write .",
67
69
  "format:check": "oxfmt --config .oxfmtrc.json --check .",
68
- "quality:changed": "bun run scripts/quality/changed-files-quality.ts",
69
- "prepublishOnly": "bun run schema:publish",
70
+ "quality:changed": "node scripts/quality/changed-files-quality.ts",
71
+ "prepublishOnly": "pnpm run schema:publish",
70
72
  "prepare": "husky"
71
73
  },
72
74
  "devDependencies": {
73
- "@inquirer/prompts": "^7.2.0",
74
- "@semantic-release/changelog": "^6.0.3",
75
- "@semantic-release/exec": "^7.1.0",
76
- "@semantic-release/git": "^10.0.1",
77
- "@types/bun": "latest",
78
- "bun-types": "latest",
79
- "chalk": "^5.3.0",
80
- "commander": "^12.1.0",
81
- "conventional-changelog-conventionalcommits": "^8.0.0",
82
- "husky": "^9.1.7",
83
- "js-yaml": "^4.1.1",
84
- "lint-staged": "^16.2.7",
85
- "ora": "^8.1.1",
75
+ "@inquirer/prompts": "7.10.1",
76
+ "@semantic-release/changelog": "6.0.3",
77
+ "@semantic-release/exec": "7.1.0",
78
+ "@semantic-release/git": "10.0.1",
79
+ "@types/node": "25.2.0",
80
+ "chalk": "5.6.2",
81
+ "commander": "12.1.0",
82
+ "conventional-changelog-conventionalcommits": "8.0.0",
83
+ "husky": "9.1.7",
84
+ "js-yaml": "4.1.1",
85
+ "lint-staged": "16.2.7",
86
+ "ora": "8.2.0",
86
87
  "oxfmt": "0.28.0",
87
88
  "oxlint": "1.43.0",
88
- "semantic-release": "^25.0.3",
89
+ "semantic-release": "25.0.6",
89
90
  "ts-json-schema-generator": "2.4.0",
90
- "typescript": "^5.9.3"
91
+ "typescript": "5.9.3",
92
+ "vitest": "3.2.4"
91
93
  },
92
94
  "lint-staged": {
93
95
  "*.{ts,tsx,js,mjs,cjs,json,md,yml,yaml}": "oxfmt --config .oxfmtrc.json --write"
94
96
  },
95
97
  "engines": {
96
98
  "node": ">=18.0.0"
97
- }
99
+ },
100
+ "packageManager": "pnpm@10.15.1"
98
101
  }