@aspects-ai/workspace-cli 0.1.23 → 0.1.24

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/dist/index.js CHANGED
@@ -6,13 +6,13 @@ import { Command as Command8 } from "commander";
6
6
  // package.json
7
7
  var package_default = {
8
8
  name: "@aspects-ai/workspace-cli",
9
- version: "0.1.22",
9
+ version: "0.1.23",
10
10
  private: false,
11
11
  description: "Lightweight CLI for installing libraries into workspaces",
12
12
  type: "module",
13
13
  bin: {
14
14
  "workspace-cli": "./dist/index.js",
15
- remotion: "./node_modules/@remotion/cli/remotion-cli.js"
15
+ remotion: "./src/remotion-bin.js"
16
16
  },
17
17
  scripts: {
18
18
  build: "tsup src/index.ts --format esm --dts --clean && npm run copy:registry",
@@ -22,7 +22,8 @@ var package_default = {
22
22
  },
23
23
  files: [
24
24
  "dist",
25
- "src/registry"
25
+ "src/registry",
26
+ "src/remotion-bin.js"
26
27
  ],
27
28
  dependencies: {
28
29
  "@remotion/cli": "4.0.356",
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@aspects-ai/workspace-cli",
3
- "version": "0.1.23",
3
+ "version": "0.1.24",
4
4
  "private": false,
5
5
  "description": "Lightweight CLI for installing libraries into workspaces",
6
6
  "type": "module",
7
7
  "bin": {
8
8
  "workspace-cli": "./dist/index.js",
9
- "remotion": "./node_modules/@remotion/cli/remotion-cli.js"
9
+ "remotion": "./src/remotion-bin.js"
10
10
  },
11
11
  "scripts": {
12
12
  "build": "tsup src/index.ts --format esm --dts --clean && npm run copy:registry",
@@ -16,7 +16,8 @@
16
16
  },
17
17
  "files": [
18
18
  "dist",
19
- "src/registry"
19
+ "src/registry",
20
+ "src/remotion-bin.js"
20
21
  ],
21
22
  "dependencies": {
22
23
  "@remotion/cli": "4.0.356",
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ require('@remotion/cli/remotion-cli');