UNPKG

gladia

Version:

Official TypeScript SDK for Gladia - State-of-the-art Speech to Text API

78 lines (77 loc) 1.65 kB
{ "name": "gladia", "version": "0.1.3", "description": "Official TypeScript SDK for Gladia - State-of-the-art Speech to Text API", "main": "dist/index.js", "module": "dist/gladia.esm.js", "types": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=14" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why", "example": "ts-node examples/youtube.ts" }, "keywords": [ "gladia", "speech-to-text", "transcription", "audio", "video", "ai", "typescript", "sdk" ], "author": "Alexis Bouchez", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/alexisbouchez/gladia.ts" }, "bugs": { "url": "https://github.com/alexisbouchez/gladia.ts/issues" }, "homepage": "https://github.com/alexisbouchez/gladia.ts#readme", "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "size-limit": [ { "path": "dist/gladia.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/gladia.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^11.2.0", "@types/node": "^20.11.24", "husky": "^9.1.7", "size-limit": "^11.2.0", "ts-node": "^10.9.2", "tsdx": "^0.14.1", "tslib": "^2.8.1", "typescript": "^5.8.2" } }