-
Notifications
You must be signed in to change notification settings - Fork 679
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@openuidev/cli",
"version": "0.3.0",
"description": "CLI for OpenUI — scaffold generative UI chat apps, mint Gateway API keys, and generate LLM system prompts from component libraries, and deploy projects",
"bin": {
"openui": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build:cli": "tsc -p .",
"build": "pnpm run build:cli",
"build:exec": "node dist/index.js",
"lint:check": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"format:fix": "prettier --write './src/**'",
"format:check": "prettier --check './src/**'",
"prepare": "pnpm run build",
"ci": "pnpm run lint:check && pnpm run format:check"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "catalog:"
},
"keywords": [
"openui",
"cli",
"scaffolding",
"generative-ui",
"ai",
"llm",
"system-prompt",
"nextjs",
"react",
"chatbot",
"code-generator"
],
"homepage": "https://openui.com",
"author": "engineering@thesys.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thesysdev/openui.git",
"directory": "packages/openui-cli"
},
"bugs": {
"url": "https://github.com/thesysdev/openui/issues"
},
"dependencies": {
"@inquirer/core": "^11.1.5",
"@inquirer/prompts": "^8.3.0",
"commander": "^14.0.3",
"cross-spawn": "^7.0.6",
"dotenv": "^17.2.2",
"esbuild": "^0.25.10",
"get-port": "^7.2.0",
"open": "^10.1.0",
"openid-client": "^6.1.7",
"posthog-node": "^5.35.6"
}
}