Files
JoyD/Web/Vue/CubeLib/package.json

45 lines
1017 B
JSON
Raw Normal View History

2026-01-29 11:12:19 +08:00
{
"name": "joyd.web.vue.cubelib",
2026-01-30 15:48:13 +08:00
"version": "1.1.1",
2026-01-29 16:50:40 +08:00
"description": "Vue3 CubeLib 组件库",
2026-01-29 11:12:19 +08:00
"type": "module",
"main": "index.js",
"files": [
"dist/*",
"src/*",
2026-01-30 15:48:13 +08:00
"index.js",
2026-01-30 15:38:48 +08:00
"examples/*",
"docs/*",
2026-01-29 11:12:19 +08:00
"README.md"
],
"peerDependencies": {
"vue": ">=3.3.0"
},
"keywords": ["vue3", "components", "cubelib", "joyd"],
"author": "JoyD",
"license": "MIT",
"engines": {
"node": ">=18"
},
"publishConfig": {
"registry": "http://47.111.181.23:8081/repository/npm-releases/"
},
"scripts": {
2026-01-29 16:50:40 +08:00
"build": "vite build",
"dev": "vite dev",
"serve": "vite preview",
2026-01-29 11:12:19 +08:00
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"test": "vitest run",
"test:ui": "vitest ui"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.10.0",
"eslint-plugin-vue": "^9.30.0",
"typescript": "^5.5.3",
"vite": "^5.4.8",
"vue": "^3.4.29",
"vue-demi": "^0.14.6",
"vitest": "^2.1.5"
}
}