mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-04-06 21:40:23 +08:00
- @sunmao-ui/arco-lib@0.11.0 - @sunmao-ui/chakra-ui-lib@0.11.0 - @sunmao-ui/core@0.11.0 - @sunmao-ui/editor-sdk@0.11.0 - @sunmao-ui/editor@0.11.0 - @sunmao-ui/runtime@0.11.0 - @sunmao-ui/shared@0.11.0 - @sunmao-ui/vite-plugin-fs@0.1.2 - @sunmao-ui/vite-plugins@1.1.2
105 lines
2.8 KiB
JSON
105 lines
2.8 KiB
JSON
{
|
|
"name": "@sunmao-ui/editor",
|
|
"version": "0.11.0",
|
|
"description": "sunmao-ui editor",
|
|
"author": "sunmao-ui developers",
|
|
"homepage": "https://github.com/smartxworks/sunmao-ui#readme",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"unpkg": "dist/iife/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsup && npm run visualize",
|
|
"typings": "tsc --emitDeclarationOnly",
|
|
"test": "jest",
|
|
"prepublish": "npm run build && npm run typings",
|
|
"visualize": "esbuild-visualizer --metadata ./dist/metafile-esm.json --exclude *.png"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/smartxworks/sunmao-ui.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/smartxworks/sunmao-ui/issues"
|
|
},
|
|
"dependencies": {
|
|
"@chakra-ui/icons": "^1.0.15",
|
|
"@chakra-ui/react": "^1.7.1",
|
|
"@emotion/css": "^11.7.1",
|
|
"@optum/json-schema-editor": "^2.1.0",
|
|
"@sinclair/typebox": "^0.21.2",
|
|
"@sunmao-ui/arco-lib": "^0.11.0",
|
|
"@sunmao-ui/chakra-ui-lib": "^0.11.0",
|
|
"@sunmao-ui/core": "^0.11.0",
|
|
"@sunmao-ui/editor-sdk": "^0.11.0",
|
|
"@sunmao-ui/runtime": "^0.11.0",
|
|
"@sunmao-ui/shared": "^0.11.0",
|
|
"acorn": "^8.7.0",
|
|
"acorn-loose": "^8.3.0",
|
|
"acorn-walk": "^8.2.0",
|
|
"ajv": "^8.8.2",
|
|
"codemirror": "^5.65.9",
|
|
"escodegen": "^2.0.0",
|
|
"formik": "^2.2.9",
|
|
"immer": "^9.0.6",
|
|
"lodash": "^4.17.21",
|
|
"mobx": "^6.3.8",
|
|
"mobx-react-lite": "^3.2.2",
|
|
"re-resizable": "^6.9.5",
|
|
"react": "^17.0.2",
|
|
"react-codemirror2": "^7.2.1",
|
|
"react-dom": "^17.0.2",
|
|
"react-fiber-traverse": "^0.0.8",
|
|
"react-json-tree": "^0.16.1",
|
|
"scroll-into-view": "^1.16.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/preset-react": "^7.14.5",
|
|
"@originjs/vite-plugin-commonjs": "^1.0.3",
|
|
"@sunmao-ui/vite-plugins": "^1.1.2",
|
|
"@swc/core": "^1.2.121",
|
|
"@types/codemirror": "^5.60.5",
|
|
"@types/escodegen": "^0.0.7",
|
|
"@types/json-schema": "^7.0.7",
|
|
"@types/lodash": "^4.14.182",
|
|
"@types/scroll-into-view": "^1.16.0",
|
|
"@vitejs/plugin-react": "^2.0.1",
|
|
"@vitejs/plugin-react-refresh": "^1.3.6",
|
|
"babel-jest": "^27.2.1",
|
|
"esbuild-visualizer": "^0.3.1",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"jest": "^27.2.1",
|
|
"jest-css-modules": "^2.1.0",
|
|
"postcss": "^8.4.5",
|
|
"postcss-import": "^14.0.2",
|
|
"tsup": "^6.2.2",
|
|
"typescript": "^4.5.0",
|
|
"vite": "^3.0.8"
|
|
},
|
|
"peerDependencies": {
|
|
"@emotion/react": "^11.8.1",
|
|
"react": "16.x || 17.x",
|
|
"react-dom": "16.x || 17.x"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,html}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|