-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.62 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.62 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@object-ui/console",
"version": "7.2.0",
"description": "ObjectStack Console — opinionated, fork-ready runtime console built on @object-ui/app-shell with the full plugin set wired up. Ships as a Hono UI plugin serving a pre-built SPA.",
"license": "MIT",
"type": "module",
"homepage": "https://www.objectui.org/docs/guide/console",
"repository": {
"type": "git",
"url": "git+https://github.com/objectstack-ai/objectui.git",
"directory": "apps/console"
},
"bugs": {
"url": "https://github.com/objectstack-ai/objectui/issues"
},
"main": "./plugin.js",
"types": "./plugin.d.ts",
"exports": {
".": {
"types": "./plugin.d.ts",
"import": "./plugin.js",
"default": "./plugin.js"
}
},
"files": [
"dist",
"plugin.ts",
"plugin.js",
"plugin.d.ts",
"README.md"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"objectui",
"objectstack",
"console",
"sdui",
"hono",
"ui-plugin",
"runtime"
],
"scripts": {
"dev": "vite",
"build:plugin": "tsc -p tsconfig.plugin.json",
"build": "tsc && vite build && pnpm build:plugin",
"build:analyze": "pnpm build && echo 'Bundle analysis available at dist/stats.html'",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prepublishOnly": "pnpm build"
},
"devDependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@object-ui/app-shell": "workspace:*",
"@object-ui/auth": "workspace:*",
"@object-ui/collaboration": "workspace:*",
"@object-ui/components": "workspace:*",
"@object-ui/core": "workspace:*",
"@object-ui/data-objectstack": "workspace:*",
"@object-ui/fields": "workspace:*",
"@object-ui/i18n": "workspace:*",
"@object-ui/layout": "workspace:*",
"@object-ui/mobile": "workspace:*",
"@object-ui/permissions": "workspace:*",
"@object-ui/plugin-calendar": "workspace:*",
"@object-ui/plugin-charts": "workspace:*",
"@object-ui/plugin-chatbot": "workspace:*",
"@object-ui/plugin-dashboard": "workspace:*",
"@object-ui/plugin-designer": "workspace:*",
"@object-ui/plugin-detail": "workspace:*",
"@object-ui/plugin-form": "workspace:*",
"@object-ui/plugin-gantt": "workspace:*",
"@object-ui/plugin-grid": "workspace:*",
"@object-ui/plugin-kanban": "workspace:*",
"@object-ui/plugin-list": "workspace:*",
"@object-ui/plugin-map": "workspace:*",
"@object-ui/plugin-markdown": "workspace:*",
"@object-ui/plugin-report": "workspace:*",
"@object-ui/plugin-timeline": "workspace:*",
"@object-ui/plugin-tree": "workspace:*",
"@object-ui/plugin-view": "workspace:*",
"@object-ui/providers": "workspace:*",
"@object-ui/react": "workspace:*",
"@object-ui/types": "workspace:*",
"@objectstack/client": "^10.0.0",
"@objectstack/spec": "^10.0.0",
"@tailwindcss/postcss": "^4.3.1",
"@tailwindcss/typography": "^0.5.20",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.0.0",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"@vitest/ui": "^4.1.9",
"autoprefixer": "^10.5.0",
"happy-dom": "^20.10.6",
"lucide-react": "^1.21.0",
"postcss": "^8.5.15",
"react": "19.2.7",
"react-dom": "19.2.7",
"react-router-dom": "^7.18.0",
"sonner": "^2.0.7",
"tailwindcss": "^4.3.1",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}