Files
moeka-project/packages/utils-transformers/package.json
T
Neko 6d4b534be8 feat(provider-transformers): added package to integrate transformers.js with xsai (#36)
* feat(provider-transformers): added package to integrate transformers.js with xsai
* fix: build
* chore: use updated xsai

---------

Signed-off-by: Neko Ayaka <neko@ayaka.moe>
2025-02-27 16:12:06 +08:00

38 lines
821 B
JSON

{
"name": "@proj-airi/utils-transformers",
"type": "module",
"private": true,
"description": "Utility functions and types for Transformers.js",
"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/utils-transformers"
},
"exports": {
"./types": {
"types": "./dist/types/index.d.ts"
}
},
"types": "./dist/types/index.d.ts",
"files": [
"README.md",
"dist",
"package.json"
],
"scripts": {
"dev": "pnpm run stub",
"stub": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@huggingface/transformers": "^3.3.3"
}
}