-
Notifications
You must be signed in to change notification settings - Fork 551
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"name": "@openuidev/cli",
"version": "0.0.8",
"description": "CLI for OpenUI — scaffold generative UI chat apps and generate LLM system prompts from component libraries",
"bin": {
"openui": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build:cli": "tsc -p .",
"build:templates": "node scripts/build-templates.js",
"build": "pnpm run build:cli && pnpm run build:templates",
"build:exec": "node dist/index.js",
"lint:check": "eslint ./src --ignore-pattern 'src/templates/**'",
"lint:fix": "eslint ./src --fix --ignore-pattern 'src/templates/**'",
"format:fix": "prettier --write './src/**' '!./src/templates/**'",
"format:check": "prettier --check './src/**' '!./src/templates/**'",
"prepare": "pnpm run build",
"ci": "pnpm run lint:check && pnpm run format:check"
},
"devDependencies": {
"@types/node": "catalog:",
"rimraf": "^5.0.7"
},
"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",
"esbuild": "^0.25.10"
}
}