mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-04-06 21:40:23 +08:00
- @sunmao-ui/arco-lib@0.10.8 - @sunmao-ui/chakra-ui-lib@0.10.8 - @sunmao-ui/core@0.10.5 - @sunmao-ui/editor-sdk@0.10.8 - @sunmao-ui/editor@0.10.8 - @sunmao-ui/runtime@0.10.7 - @sunmao-ui/shared@0.10.5 - @sunmao-ui/vite-plugin-fs@0.1.4 - @sunmao-ui/vite-plugins@1.1.4
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@sunmao-ui/shared",
|
|
"version": "0.10.5",
|
|
"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 --clean --sourcemap --platform browser",
|
|
"dev": "tsup src/index.ts --watch --format cjs,esm,iife --legacy-output --clean --sourcemap --platform browser",
|
|
"typings": "tsc --emitDeclarationOnly",
|
|
"prepublish": "npm run build && npm run typings",
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@sinclair/typebox": "^0.21.2",
|
|
"@sunmao-ui/core": "^0.10.5",
|
|
"ajv": "^8.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/json-schema": "^7.0.7",
|
|
"ajv": "^8.8.2",
|
|
"jest": "^27.1.0",
|
|
"tsup": "^6.2.2",
|
|
"vite": "^3.0.8"
|
|
},
|
|
"keywords": [],
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,html}": [
|
|
"prettier --write",
|
|
"eslint --fix"
|
|
]
|
|
}
|
|
}
|