-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.05 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.05 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
{
"name": "@object-ui/cli",
"version": "0.2.1",
"description": "CLI tool for Object UI - Build applications from JSON schemas",
"type": "module",
"bin": {
"objectui": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src"
},
"keywords": [
"object-ui",
"cli",
"schema-driven",
"ui-builder",
"json"
],
"author": "ObjectQL Team",
"license": "MIT",
"dependencies": {
"commander": "^12.1.0",
"chalk": "^5.4.1",
"vite": "^5.0.0",
"@vitejs/plugin-react": "^4.2.1",
"express": "^4.21.2",
"express-rate-limit": "^7.4.1",
"js-yaml": "^4.1.0",
"@object-ui/react": "workspace:*",
"@object-ui/components": "workspace:*"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^25.0.8",
"@types/js-yaml": "^4.0.9",
"tsup": "^8.0.0",
"typescript": "^5.9.3"
}
}