@302ai/media-studio-cli 0.1.0-beta.0
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/LICENSE +190 -0
- package/README.md +159 -0
- package/dist/index.js +44326 -0
- package/dist/msc.js +2 -0
- package/package.json +54 -0
package/dist/msc.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@302ai/media-studio-cli",
|
|
3
|
+
"version": "0.1.0-beta.0",
|
|
4
|
+
"description": "CLI for AI Media Studio — let external agents drive the core media-studio features",
|
|
5
|
+
"author": "302.AI",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"homepage": "https://302.ai",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/302ai/AI-Media-Studio.git",
|
|
11
|
+
"directory": "packages/media-studio-cli"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"302.ai",
|
|
15
|
+
"cli",
|
|
16
|
+
"media-studio",
|
|
17
|
+
"chat",
|
|
18
|
+
"sse",
|
|
19
|
+
"agent"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"engines": {
|
|
23
|
+
"node": ">=22"
|
|
24
|
+
},
|
|
25
|
+
"bin": {
|
|
26
|
+
"media-studio-cli": "./dist/index.js",
|
|
27
|
+
"msc": "./dist/msc.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist"
|
|
31
|
+
],
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "NODE_ENV=development bun run src/index.ts",
|
|
37
|
+
"typecheck": "tsc --noEmit",
|
|
38
|
+
"build": "bun build --target=node --define process.env.NODE_ENV='\"production\"' src/index.ts --outfile dist/index.js && bun scripts/fix-dist.ts",
|
|
39
|
+
"build:binary": "bun build --compile --define process.env.NODE_ENV='\"production\"' src/index.ts --outfile bin/media-studio-cli",
|
|
40
|
+
"prepublishOnly": "bun run build && bun run typecheck"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@302ai/media-studio-core": "workspace:*",
|
|
44
|
+
"@clack/prompts": "^1.7.0",
|
|
45
|
+
"@types/node": "^26.4.0",
|
|
46
|
+
"citty": "^0.2.2",
|
|
47
|
+
"consola": "^3.4.2",
|
|
48
|
+
"nanoid": "^5.1.11",
|
|
49
|
+
"open": "^11.0.2",
|
|
50
|
+
"picocolors": "^1.1.1",
|
|
51
|
+
"ts-pattern": "^5.9.0",
|
|
52
|
+
"zod": "^4.5.4"
|
|
53
|
+
}
|
|
54
|
+
}
|