-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.66 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.66 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
64
65
66
67
68
69
70
71
72
73
{
"name": "@objectstack/plugin-ui",
"version": "3.3.0",
"description": "ObjectStack CLI plugin for Object UI — oclif-based UI toolchain commands (os ui dev, os ui build, etc.)",
"type": "module",
"homepage": "https://www.objectui.org",
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/objectui.git",
"directory": "packages/cli"
},
"bugs": {
"url": "https://github.com/objectstack-ai/objectui/issues"
},
"bin": {
"objectui": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src",
"test": "vitest run"
},
"keywords": [
"objectstack",
"object-ui",
"oclif-plugin",
"cli",
"schema-driven",
"ui-builder",
"json"
],
"author": "ObjectStack Team",
"license": "MIT",
"oclif": {
"commands": "./dist/commands",
"hooks": {}
},
"dependencies": {
"@object-ui/components": "workspace:*",
"@object-ui/react": "workspace:*",
"@object-ui/types": "workspace:*",
"@oclif/core": "^4.10.5",
"@types/glob": "^9.0.0",
"@vitejs/plugin-react": "^6.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"express": "^4.22.1",
"express-rate-limit": "^8.3.2",
"glob": "^13.0.6",
"js-yaml": "^4.1.1",
"vite": "^8.0.8"
},
"devDependencies": {
"@types/express": "^4.17.25",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.6.0",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}