-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
72 lines (72 loc) · 1.76 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
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
{
"name": "jschema-editor",
"version": "0.0.4",
"description": "[Antd Design](https://ant.design/) 风格的 Json Schema 可视化编辑器。",
"scripts": {
"build": "rollup -c --configPlugin @rollup/plugin-typescript",
"deploy": "npm run build && npm publish",
"prepare": "husky install"
},
"keywords": [
"editor",
"react",
"antd",
"json schema",
"json schema editor"
],
"author": "jokergga",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Jokergga/jschema-editor.git",
"branch": "master"
},
"main": "dist/json-schema-editor.cjs.js",
"module": "dist/json-schema-editor.esm.js",
"types": "dist/json-schema-editor.d.ts",
"files": [
"dist"
],
"lint-staged": {
"*.{jsx,less,md,json}": [
"prettier --cache --write"
],
"*.ts?(x)": [
"prettier --cache --parser=typescript --write"
]
},
"peerDependencies": {
"antd": ">=4.19.5",
"react": ">=16.12.0"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@monaco-editor/react": "^4.4.2",
"genson-js": "^0.0.8",
"lodash": "^4.17.21",
"mobx": "^6.6.1",
"mobx-react": "^7.5.2",
"mobx-react-lite": "^3.4.0",
"monaco-editor": "^0.41.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/react": "^18.0.14",
"antd": "^4.19.5",
"husky": "^8.0.1",
"less": "^4.1.3",
"lint-staged": "^13.0.3",
"postcss": "^8.4.17",
"prettier": "^2.7.1",
"react": "^16.12.0",
"rollup": "^2.75.7",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.4.0",
"tsx": "^3.10.0",
"typescript": "^4.7.4",
"zx": "^7.1.0"
}
}