-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.34 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.34 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
{
"name": "@object-ui/types",
"version": "3.3.1",
"description": "Pure TypeScript type definitions for Object UI - The Protocol Layer",
"type": "module",
"sideEffects": false,
"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"
},
"./base": {
"types": "./dist/base.d.ts",
"import": "./dist/base.js"
},
"./layout": {
"types": "./dist/layout.d.ts",
"import": "./dist/layout.js"
},
"./form": {
"types": "./dist/form.d.ts",
"import": "./dist/form.js"
},
"./data-display": {
"types": "./dist/data-display.d.ts",
"import": "./dist/data-display.js"
},
"./feedback": {
"types": "./dist/feedback.d.ts",
"import": "./dist/feedback.js"
},
"./overlay": {
"types": "./dist/overlay.d.ts",
"import": "./dist/overlay.js"
},
"./navigation": {
"types": "./dist/navigation.d.ts",
"import": "./dist/navigation.js"
},
"./complex": {
"types": "./dist/complex.d.ts",
"import": "./dist/complex.js"
},
"./data": {
"types": "./dist/data.d.ts",
"import": "./dist/data.js"
},
"./zod": {
"types": "./dist/zod/index.zod.d.ts",
"import": "./dist/zod/index.zod.js"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"type-check": "tsc --noEmit",
"lint": "eslint ."
},
"keywords": [
"object-ui",
"types",
"typescript",
"schema",
"json-schema",
"protocol",
"objectui",
"sdui",
"schema-driven-ui",
"react",
"tailwind",
"shadcn",
"objectstack"
],
"author": "Object UI Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/objectstack-ai/objectui.git",
"directory": "packages/types"
},
"dependencies": {
"@objectstack/spec": "^4.0.4",
"zod": "^4.4.3"
},
"devDependencies": {
"typescript": "^6.0.3"
},
"bugs": {
"url": "https://github.com/objectstack-ai/objectui/issues"
},
"homepage": "https://www.objectui.org/docs/api/schema-reference",
"publishConfig": {
"access": "public"
}
}