Files
moeka-project/packages/ui/package.json
T
2025-04-26 16:03:38 +08:00

47 lines
1.1 KiB
JSON

{
"name": "@proj-airi/ui",
"type": "module",
"private": true,
"description": "A collection of UI components that used by Project AIRI",
"author": {
"name": "Neko Ayaka",
"email": "neko@ayaka.moe",
"url": "https://github.com/nekomeowww"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/moeru-ai/airi.git",
"directory": "packages/ui"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./components/animations": {
"types": "./dist/components/Animations/index.d.ts",
"import": "./dist/components/Animations/index.mjs"
},
"./components/form": {
"types": "./dist/components/Form/index.d.ts",
"import": "./dist/components/Form/index.mjs"
}
},
"scripts": {
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"@vueuse/core": "^13.1.0",
"reka-ui": "^2.2.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@vue-macros/volar": "3.0.0-beta.8",
"vue-tsc": "^3.0.0-alpha.4"
}
}