Update package.json

This commit is contained in:
Joshua Lochner 2023-04-22 22:03:31 +02:00
parent 0335000bc2
commit ad69f0a9ea
1 changed files with 4 additions and 2 deletions

View File

@ -3,12 +3,13 @@
"version": "1.5.0.dev",
"description": "Run 🤗 Transformers in your browser! We currently support BERT, ALBERT, DistilBERT, MobileBERT, SqueezeBERT, T5, T5v1.1, FLAN-T5, mT5, BART, MarianMT, GPT2, GPT Neo, CodeGen, Whisper, CLIP, Vision Transformer, VisionEncoderDecoder, and DETR models, for a variety of tasks including: masked language modelling, text classification, token classification, zero-shot classification, text-to-text generation, translation, summarization, question answering, text generation, automatic speech recognition, image classification, zero-shot image classification, image-to-text, image segmentation, and object detection.",
"main": "./src/transformers.js",
"types": "./types/transformers.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"webpack": "webpack",
"typegen": "tsc ./src/transformers.js --outDir dist/types --allowJs --declaration --emitDeclarationOnly",
"typegen": "tsc",
"dev": "webpack serve --no-client-overlay",
"test": "node tests/index.js",
"build": "npm run webpack && npm run typegen",
@ -49,6 +50,7 @@
"files": [
"src",
"dist",
"types",
"tests",
"README.md",
"LICENSE"
@ -58,4 +60,4 @@
"path": false,
"sharp": false
}
}
}