mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2024-12-09 09:20:18 +08:00
5c6db91554
- @sunmao-ui/arco-lib@0.3.3 - @sunmao-ui/chakra-ui-lib@0.5.3 - @sunmao-ui/core@0.7.3 - @sunmao-ui/editor-sdk@0.3.3 - @sunmao-ui/editor@0.7.3 - @sunmao-ui/runtime@0.7.3 - @sunmao-ui/shared@0.2.3 - @sunmao-ui/vite-plugin-fs@0.0.3 - @sunmao-ui/vite-plugins@1.0.5
49 lines
1.2 KiB
JSON
49 lines
1.2 KiB
JSON
{
|
|
"name": "@sunmao-ui/shared",
|
|
"version": "0.2.3",
|
|
"description": "The Sunmao shared lib",
|
|
"author": "sunmao-ui developers",
|
|
"homepage": "https://github.com/smartxworks/sunmao-ui#readme",
|
|
"license": "Apache-2.0",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"main": "dist/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"unpkg": "dist/iife/index.js",
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format cjs,esm,iife --legacy-output --no-splitting --clean --sourcemap --platform browser",
|
|
"dev": "tsup src/index.ts --watch --format cjs,esm,iife --legacy-output --no-splitting --clean --sourcemap --platform browser",
|
|
"typings": "tsc --emitDeclarationOnly",
|
|
"prepublish": "npm run build && npm run typings",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@sinclair/typebox": "^0.21.2",
|
|
"lodash": "^4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "^7.0.7",
|
|
"@types/lodash": "^4.14.182",
|
|
"jest": "^27.1.0",
|
|
"tsup": "^5.11.0"
|
|
},
|
|
"keywords": [],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,html}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|