vue积木库

This commit is contained in:
zqm
2026-01-29 11:12:19 +08:00
parent 89f6816360
commit e8cff47482
9 changed files with 355 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
{
"name": "joyd.web.vue.cubelib",
"version": "1.0.0",
"description": "JoyD Vue3 CubeLib 组件库",
"type": "module",
"main": "index.js",
"files": [
"dist/*",
"src/*",
"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": {
"build": "vue-demi-vite build",
"dev": "vue-demi-vite dev",
"serve": "vue-demi-vite preview",
"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",
"vue-demi-vite": "^0.2.0",
"vitest": "^2.1.5"
}
}