* 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>
38 lines
821 B
JSON
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"
|
|
}
|
|
}
|