Files
wehub-resource-sync 311a3666c4
Build documentation / build (push) Failing after 0s
Unit tests / build (18) (push) Has been cancelled
Unit tests / build (20) (push) Has been cancelled
Unit tests / build (22) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:44:39 +08:00

64 lines
1.5 KiB
JSON

{
"name": "@huggingface/transformers-monorepo",
"version": "0.0.1",
"private": true,
"description": "Monorepo for Hugging Face Transformers.js and framework integrations",
"type": "module",
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "node scripts/dev.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huggingface/transformers.js.git"
},
"author": "Hugging Face",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huggingface/transformers.js/issues"
},
"homepage": "https://github.com/huggingface/transformers.js#readme",
"devDependencies": {
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"prettier": {
"overrides": [
{
"files": [
"./packages/*/src/**/*.{js,mjs,cjs,ts}"
],
"options": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 120
}
},
{
"files": [
"./packages/*/tests/**/*.{js,mjs,cjs,ts}"
],
"options": {
"tabWidth": 2,
"printWidth": 10000000
}
},
{
"files": [
"./scripts/**/*.{js,mjs,cjs,ts}",
"./packages/*/scripts/**/*.{js,mjs,cjs,ts}",
"./packages/*/docs/**/*.{js,mjs,cjs,ts}"
],
"options": {
"tabWidth": 2,
"printWidth": 160
}
}
]
}
}