@audc/salute-tts
Version:
Synthesis client for Node.js
106 lines (105 loc) • 3.28 kB
JSON
{
"name": "@audc/salute-tts",
"version": "1.0.0",
"description": "Synthesis client for Node.js",
"repository": "googleapis/nodejs-synthesis",
"license": "Apache-2.0",
"author": "Google LLC",
"main": "./build/cjs/src/index.cjs",
"types": "./build/cjs/src/index.d.ts",
"type": "module",
"exports": {
".": {
"import": {
"types": "./build/esm/src/index.d.ts",
"default": "./build/esm/src/index.js"
},
"require": {
"types": "./build/cjs/src/index.d.ts",
"default": "./build/cjs/src/index.cjs"
}
},
"./build/protos/protos": {
"import": {
"types": "./build/protos/protos/protos.d.ts",
"default": "./build/protos/protos/protos.js"
},
"require": {
"types": "./build/protos/protos/protos.d.ts",
"default": "./build/protos/protos/protos.cjs"
}
}
},
"files": [
"build/esm",
"build/cjs",
"build/protos",
"!build/esm/**/*.map",
"!build/cjs/**/*.map"
],
"keywords": [
"google apis client",
"google api client",
"google apis",
"google api",
"google",
"google cloud platform",
"google cloud",
"cloud",
"google synthesis",
"synthesis",
"smart speech"
],
"scripts": {
"clean": "gts clean",
"compile-protos": "compileProtos esm/src --esm ",
"docs": "jsdoc -c .jsdoc.cjs",
"postpack": "minifyProtoJson build/cjs && minifyProtoJson build/esm",
"predocs-test": "npm run docs",
"docs-test": "linkinator docs",
"fix": "gts fix",
"lint": "gts check",
"prepare": "npm run compile-protos && npm run compile",
"system-test:cjs": "c8 mocha build/cjs/system-test",
"system-test:esm": "c8 mocha build/esm/system-test",
"system-test": "npm run system-test:esm && npm run system-test:cjs",
"test:cjs": "c8 mocha build/cjs/test",
"test:esm": "c8 mocha build/esm/test",
"test": "npm run test:cjs && npm run test:esm",
"compile:esm": "tsc -p ./tsconfig.esm.json && cp -r esm/src/json-helper.cjs build/esm/src/json-helper.cjs",
"babel": "babel esm --out-dir build/cjs --ignore \"esm/**/*.d.ts\" --extensions \".ts\" --out-file-extension .cjs --copy-files",
"compile:cjs": "tsc -p ./tsconfig.json && npm run babel",
"compile": "npm run compile:esm && rm -rf esm/src/json-helper.d.cts && npm run compile:cjs && rm -rf build/protos && cp -r protos build/protos",
"samples-test": "cd samples/ && npm link ../ && npm i && npm test"
},
"dependencies": {
"google-gax": "^5.0.1-rc.0"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.27.0",
"@types/mocha": "^10.0.7",
"@types/node": "^20.16.4",
"@types/sinon": "^17.0.0",
"babel-plugin-replace-import-extension": "^1.1.5",
"c8": "^10.1.3",
"gapic-tools": "^1.0.1",
"gts": "^5.3.1",
"jsdoc": "^4.0.4",
"jsdoc-region-tag": "^3.0.0",
"jsdoc-fresh": "^3.0.0",
"long": "^5.2.3",
"mocha": "^10.7.3",
"pack-n-play": "^2.0.3",
"sinon": "^18.0.0",
"typescript": "5.1.6",
"ts-loader": "^8.4.0",
"webpack": "^5.98.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=v18"
}
}