-
Notifications
You must be signed in to change notification settings - Fork 551
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.75 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
{
"name": "@openuidev/browser-bundle",
"version": "0.1.1",
"description": "Prebuilt IIFE browser bundle of @openuidev/react-lang + @openuidev/react-ui for iframe, CDN, and no-build-pipeline embedding (Open WebUI tools, chatbots, widgets, etc.)",
"license": "MIT",
"type": "module",
"sideEffects": true,
"files": [
"dist",
"README.md"
],
"exports": {
".": "./dist/openui-bundle.min.js",
"./styles.css": "./dist/openui-styles.css",
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && esbuild src/entry.js --bundle --format=iife --minify --outfile=dist/openui-bundle.min.js --define:process.env.NODE_ENV=\\\"production\\\" --target=es2020 && node scripts/concat-css.mjs",
"typecheck": "echo \"(no types to check — IIFE bundle)\"",
"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"
},
"keywords": [
"openui",
"generative-ui",
"react",
"ai",
"llm",
"browser",
"iife",
"cdn",
"bundle",
"iframe",
"embed",
"no-build",
"open-webui"
],
"homepage": "https://openui.com",
"author": "engineering@thesys.dev",
"repository": {
"type": "git",
"url": "https://github.com/thesysdev/openui.git",
"directory": "packages/browser-bundle"
},
"bugs": {
"url": "https://github.com/thesysdev/openui/issues"
},
"dependencies": {
"@openuidev/react-lang": "workspace:^",
"@openuidev/react-ui": "workspace:^",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"esbuild": "^0.25.12",
"rimraf": "^5.0.7"
}
}