49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
|
{
|
||
|
"name": "vue-library-starter",
|
||
|
"description": "A minimal Vue library starter, built on top of Vite & Vue 3",
|
||
|
"version": "0.0.1",
|
||
|
"type": "module",
|
||
|
"author": "xiaoluoboding <xiaoluoboding@gmail.com>",
|
||
|
"scripts": {
|
||
|
"dev": "vite",
|
||
|
"build:docs": "vite build --mode docs",
|
||
|
"build:lib": "vue-tsc --noEmit && vite build --mode lib",
|
||
|
"preview": "vite preview",
|
||
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/xiaoluoboding/vue-library-starter.git"
|
||
|
},
|
||
|
"homepage": "https://github.com/xiaoluoboding/vue-library-starter",
|
||
|
"files": [
|
||
|
"lib"
|
||
|
],
|
||
|
"main": "./lib/vue-library-starter.umd.cjs",
|
||
|
"module": "./lib/vue-library-starter.js",
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"import": "./lib/vue-library-starter.js",
|
||
|
"require": "./lib/vue-library-starter.umd.cjs",
|
||
|
"types": "./lib/index.d.ts"
|
||
|
}
|
||
|
},
|
||
|
"types": "./lib/index.d.ts",
|
||
|
"devDependencies": {
|
||
|
"@iconify/json": "^2.2.104",
|
||
|
"@types/node": "^18.7.14",
|
||
|
"@unocss/reset": "^0.55.2",
|
||
|
"@vitejs/plugin-vue": "^4.3.2",
|
||
|
"@vueuse/core": "^10.3.0",
|
||
|
"highlight.js": "^11.6.0",
|
||
|
"sass": "^1.66.1",
|
||
|
"typescript": "^4.6.4",
|
||
|
"unocss": "^0.55.2",
|
||
|
"unplugin-icons": "^0.16.5",
|
||
|
"unplugin-vue-components": "^0.25.1",
|
||
|
"vite": "^4.4.9",
|
||
|
"vite-plugin-dts": "^3.5.2",
|
||
|
"vue": "^3.3.4",
|
||
|
"vue-tsc": "^1.8.8"
|
||
|
}
|
||
|
}
|