forked from opentiny/tiny-vue
47 lines
1.0 KiB
JSON
47 lines
1.0 KiB
JSON
{
|
|
"name": "@opentiny/unplugin-tiny-vue",
|
|
"version": "0.0.2",
|
|
"description": "A vite auto import plugin for TinyVue",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"dev": "pnpm run build --watch --ignore-watch example",
|
|
"build": "rimraf dist && tsup src/index.ts --dts --format cjs,esm",
|
|
"prepublishOnly": "pnpm build"
|
|
},
|
|
"type": "module",
|
|
"types": "dist/index.d.ts",
|
|
"author": "Tiny Vue Team",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:opentiny/tiny-vue.git"
|
|
},
|
|
"keywords": [
|
|
"vite-plugin",
|
|
"TinyVue",
|
|
"vite",
|
|
"auto-import"
|
|
],
|
|
"license": "MIT",
|
|
"peerDependencies": {
|
|
"vite": ">=4"
|
|
},
|
|
"dependencies": {
|
|
"unplugin-vue-components": "^0.26.0"
|
|
},
|
|
"devDependencies": {
|
|
"rimraf": "^5.0.5",
|
|
"tsup": "7.2.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^4.3.8"
|
|
}
|
|
}
|