@photon-ai/cli 0.2.1 → 0.3.3
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/photon.js +99 -99
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@photon-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "Photon CLI — typed terminal UI for the Photon Dashboard. Binary: `photon` (alias `pho`).",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"photon",
|
|
@@ -42,7 +42,10 @@
|
|
|
42
42
|
"build": "bun build ./src/index.ts --outfile dist/photon.js --target node --minify && chmod +x dist/photon.js",
|
|
43
43
|
"compile": "bun build ./src/index.ts --compile --outfile dist/photon",
|
|
44
44
|
"typecheck": "tsc --noEmit",
|
|
45
|
+
"test": "bun test",
|
|
46
|
+
"check": "bun run typecheck && bun test && bun run build",
|
|
45
47
|
"sync:api": "bun run scripts/sync-api-types.ts",
|
|
48
|
+
"manifest": "bun run scripts/generate-route-manifest.ts",
|
|
46
49
|
"prepublishOnly": "bun run typecheck && bun run build"
|
|
47
50
|
},
|
|
48
51
|
"devDependencies": {
|