Files
moeka-project/packages/hfup/package.json
T
Neko 86fac7dcb7 feat: integrated to @xsai/generate-speech (#9)
* feat: integrated to @xsai/generate-speech
* chore: updated impl
* feat: done integrations
* chore: remove llm-proxy package, remove unused eslint config
2025-01-05 19:29:08 +08:00

45 lines
1.1 KiB
JSON

{
"name": "hfup",
"type": "module",
"version": "0.1.0",
"private": false,
"description": "A collection of tools to help you deploy, bundle HuggingFace Spaces and related assets with ease.",
"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/huggingspace"
},
"exports": {
"./vite": {
"types": "./dist/vite/index.d.ts",
"import": "./dist/vite/index.mjs",
"node": "./dist/vite/index.cjs"
}
},
"main": "./dist/vite/index.cjs",
"module": "./dist/vite/index.mjs",
"types": "./dist/vite/index.d.ts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"package:publish": "pnpm build && pnpm publish --access public --no-git-checks"
},
"dependencies": {
"defu": "^6.1.4",
"gray-matter": "^4.0.3",
"vite": "^6.0.7"
}
}