-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 KB
/
package.json
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
{
"name": "@monaco-editor-enhancer/json-editor",
"private": false,
"version": "1.1.2",
"description": "Enhance your Monaco Editor with advanced JSON schema support, including Zod schema integration.",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"module": "dist/esm/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/baranwang/monaco-enhancer",
"directory": "packages/json-editor"
},
"scripts": {
"dev": "rslib build -w",
"build": "rslib build"
},
"keywords": [
"monaco-editor",
"json-editor",
"json",
"json-schema",
"zod",
"zod-schema"
],
"author": "baranwang",
"license": "MIT",
"peerDependencies": {
"react": "*"
},
"dependencies": {
"zod-to-json-schema": "^3.23.3"
},
"devDependencies": {
"@rsbuild/plugin-react": "^1.0.2",
"@rslib/core": "^0.0.7",
"@types/react": "^18.3.9",
"monaco-editor": "^0.52.0",
"react": "^18.3.1",
"typescript": "^5.6.2",
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}