r-util-js/packages/uni-app/package.json

42 lines
869 B
JSON

{
"name": "@r-utils/uni-app",
"version": "1.0.1",
"private": false,
"description": "uni-app工具库",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./*": "./*"
},
"keywords": [
"uni-app"
],
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"lint": "eslint --ext .js,ts --fix src",
"release": "standard-version",
"commit": "cz",
"lint-staged": "lint-staged",
"test": "jest"
},
"dependencies": {
"@r-utils/common": "workspace:^"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"devDependencies": {
"@dcloudio/types": "^3.0.7",
"vue": "^3.3.0"
}
}