mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-12-09 09:20:18 +08:00
d72bd0c806
- @sunmao-ui/arco-lib@0.1.3 - @sunmao-ui/chakra-ui-lib@0.3.3 - @sunmao-ui/core@0.5.3 - @sunmao-ui/editor-sdk@0.1.4 - @sunmao-ui/editor@0.5.4 - @sunmao-ui/runtime@0.5.3
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"name": "@sunmao-ui/arco-lib",
|
|
"version": "0.1.3",
|
|
"homepage": "https://github.com/webzard-io/sunmao-ui-arco-lib",
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/webzard-io/sunmao-ui-arco-lib.git"
|
|
},
|
|
"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",
|
|
"typings": "tsc --emitDeclarationOnly",
|
|
"build": "tsup src/index.ts --format cjs,esm,iife --legacy-output --inject ./react-import.js --clean --no-splitting --sourcemap",
|
|
"serve": "vite preview",
|
|
"lint": "eslint ./src --ext .ts --ext .tsx",
|
|
"fix-lint": "eslint --fix ./src --ext .ts --ext .tsx",
|
|
"prepublish": "npm run build && npm run typings"
|
|
},
|
|
"dependencies": {
|
|
"@arco-design/web-react": "^2.29.0",
|
|
"@emotion/css": "^11.7.1",
|
|
"@sinclair/typebox": "^0.21.2",
|
|
"@sunmao-ui/core": "^0.5.3",
|
|
"@sunmao-ui/runtime": "^0.5.3",
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
|
"lodash-es": "^4.17.21",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/lodash": "^4.14.170",
|
|
"@types/lodash-es": "^4.17.5",
|
|
"@types/react": "^17.0.0",
|
|
"@types/react-dom": "^17.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.31.1",
|
|
"@typescript-eslint/parser": "^4.31.1",
|
|
"@vitejs/plugin-react": "^1.0.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-plugin-react": "^7.25.1",
|
|
"husky": "^6.0.0",
|
|
"lint-staged": "^11.0.0",
|
|
"postcss": "^8.4.5",
|
|
"postcss-import": "^14.0.2",
|
|
"tsup": "^5.11.11",
|
|
"typescript": "^4.3.2",
|
|
"vite": "^2.6.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,html}": [
|
|
"prettier --write",
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
},
|
|
"peerDependencies": {
|
|
"@sunmao-ui/core": "^0.4.1",
|
|
"@sunmao-ui/runtime": "^0.4.1"
|
|
}
|
|
}
|