@directed/cli 0.1.2

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 (3) hide show
  1. package/README.md +81 -0
  2. package/dist/cli.js +1938 -0
  3. package/package.json +29 -0
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@directed/cli",
3
+ "version": "0.1.2",
4
+ "type": "module",
5
+ "bin": {
6
+ "directed": "./dist/cli.js"
7
+ },
8
+ "files": [
9
+ "dist"
10
+ ],
11
+ "engines": {
12
+ "node": ">=20"
13
+ },
14
+ "scripts": {
15
+ "build": "npm run build:prod && npm run build:staging && npm run build:local",
16
+ "build:prod": "HUB_URL=https://hub.directed.ai tsup",
17
+ "build:staging": "HUB_URL=https://staging-hub.directed.ai tsup --out-dir dist-staging",
18
+ "build:local": "HUB_URL=http://localhost:8000 tsup --out-dir dist-local",
19
+ "dev": "HUB_URL=https://hub.directed.ai tsx src/cli.ts",
20
+ "test": "HUB_URL=https://hub.directed.ai node --import tsx --test test/*.test.ts",
21
+ "typecheck": "tsc --noEmit"
22
+ },
23
+ "devDependencies": {
24
+ "@types/node": "^20.14.0",
25
+ "tsup": "^8.0.0",
26
+ "tsx": "^4.16.0",
27
+ "typescript": "^5.5.0"
28
+ }
29
+ }