intershell 0.3.4 → 0.3.5

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 (1) hide show
  1. package/package.json +6 -8
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "private": false,
3
3
  "name": "intershell",
4
- "version": "0.3.4",
4
+ "version": "0.3.5",
5
5
  "description": "Bun‑first CLI toolkit for developer workflow automation in monorepos and monoliths.",
6
6
  "license": "MIT",
7
7
  "author": "Soheil Movahedan <soheil.movahedan@gmail.com>",
@@ -25,9 +25,9 @@
25
25
  "intershell": "./dist/index.js"
26
26
  },
27
27
  "exports": {
28
- "./core": "./src/core/index.ts",
29
- ".": "./index.ts",
30
- "./entities": "./src/entities/index.ts"
28
+ "./core": "./dist/core/index.ts",
29
+ ".": "./dist/index.ts",
30
+ "./entities": "./dist/entities/index.ts"
31
31
  },
32
32
  "oclif": {
33
33
  "bin": "intershell",
@@ -46,19 +46,17 @@
46
46
  "scripts": {
47
47
  "check:types": "tsc --noEmit",
48
48
  "build": "rm -rf dist && tsc -p tsconfig.build.json && echo '#!/usr/bin/env bun' > dist/index.js.tmp && tail -n +2 dist/index.js >> dist/index.js.tmp && mv dist/index.js.tmp dist/index.js",
49
- "postbuild": "bun run dist/index.js update-package-json",
50
49
  "check": "biome check .",
51
50
  "check:fix": "biome check . --write",
52
51
  "test": "bun test",
53
52
  "check:quick": "bun run check:fix && bun run check:types && bun run test && bun run build",
54
53
  "commit:check": "bun run ./src/commands/commit-check.ts"
55
54
  },
56
- "devDependencies": {
55
+ "dependencies": {
57
56
  "@oclif/core": "4.5.4",
58
57
  "@oclif/dev-cli": "1.26.10",
59
58
  "@oclif/plugin-help": "6.2.33",
60
- "@oclif/plugin-version": "2.2.33",
61
- "bun-types": "^1.3.3"
59
+ "@oclif/plugin-version": "2.2.33"
62
60
  },
63
61
  "peerDependencies": {
64
62
  "@biomejs/biome": "2.1.2",