-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@photon-ai/cli",
"version": "2.1.0",
"description": "Photon CLI — typed terminal UI for the Photon Dashboard. Binary: `photon` (alias `pho`).",
"keywords": [
"photon",
"cli",
"dashboard",
"spectrum",
"messaging",
"imessage",
"developer-tools"
],
"author": "Photon",
"license": "MIT",
"homepage": "https://github.com/photon-hq/cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/photon-hq/cli.git"
},
"bugs": {
"url": "https://github.com/photon-hq/cli/issues"
},
"type": "module",
"bin": {
"photon": "./dist/photon.js",
"pho": "./dist/photon.js"
},
"files": [
"dist",
"README.md"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=18.0.0"
},
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun build ./src/index.ts --outfile dist/photon.js --target node --minify --external update-notifier && chmod +x dist/photon.js",
"compile": "bun build ./src/index.ts --compile --outfile dist/photon",
"typecheck": "tsc --noEmit",
"test": "bun test",
"check": "bun run typecheck && bun test && bun run build",
"manifest": "bun run scripts/generate-route-manifest.ts",
"prepublishOnly": "bun run typecheck && bun run build"
},
"devDependencies": {
"@photon-ai/dashboard-api": "1.6.12",
"@types/bun": "latest",
"@types/node": "^25.6.2",
"@types/semver": "^7.7.1",
"@types/update-notifier": "^6.0.8",
"elysia": "1.4.28",
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@commander-js/extra-typings": "^14.0.0",
"@elysiajs/eden": "1.4.9",
"better-auth": "1.4.18",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"open": "^11.0.0",
"picocolors": "^1.1.1",
"semver": "^7.8.5",
"update-notifier": "^7.3.1"
}
}