-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "@object-ui/plugin-object",
"version": "0.3.0",
"description": "ObjectQL plugin for Object UI - Object Table and Object Form components",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"build": "tsc && vite build",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"test": "vitest run",
"lint": "eslint .",
"test:watch": "vitest"
},
"keywords": [
"object-ui",
"objectql",
"object-table",
"object-form",
"plugin",
"components",
"typescript"
],
"author": "Object UI Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/objectstack-ai/objectui.git",
"directory": "packages/plugin-object"
},
"dependencies": {
"@object-ui/types": "workspace:*",
"@object-ui/core": "workspace:*",
"@object-ui/react": "workspace:*",
"@object-ui/components": "workspace:*",
"@object-ui/data-objectql": "workspace:*",
"@objectql/sdk": "^3.0.1",
"@objectql/types": "^3.0.1",
"lucide-react": "^0.469.0",
"clsx": "^2.1.1",
"tailwind-merge": "^3.4.0"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.2.1",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.17"
}
}