r-util-js/packages/vue3/package.json

43 lines
890 B
JSON
Raw Normal View History

2026-03-16 17:58:57 +08:00
{
"name": "@r-utils/vue3",
2026-03-18 15:53:43 +08:00
"version": "1.0.3",
2026-03-17 10:24:02 +08:00
"private": false,
2026-03-16 17:58:57 +08:00
"description": "Vue3 工具",
"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": [
"vue3"
],
2026-03-18 15:53:43 +08:00
"publishConfig": {
"registry": "http://npm.nps.yunvip123.cn"
},
2026-03-16 17:58:57 +08:00
"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"
},
"license": "ISC",
2026-03-17 14:42:03 +08:00
"peerDependencies": {
2026-03-16 17:58:57 +08:00
"vue": "^3.3.0"
},
"devDependencies": {
2026-03-17 14:42:03 +08:00
"vue": "^3.3.0"
2026-03-16 17:58:57 +08:00
},
"packageManager": "pnpm@8.15.6"
}