-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
70 lines (70 loc) · 2.15 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "msedge-tts",
"version": "1.3.4",
"description": "An Azure Speech Service module that uses the Microsoft Edge Read Aloud API.",
"author": "Migushthe2nd <Migushthe2nd@users.noreply.github.com>",
"license": "MIT",
"repository": "https://github.com/Migushthe2nd/MsEdgeTTS.git",
"private": false,
"module": "./dist/index",
"main": "./dist/index",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "yarn run build && ts-node src/test/test.ts",
"build": "tsc",
"prepublishOnly": "yarn run build",
"publish": "yarn publish --access=public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config src/test/jest-e2e.json"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/randombytes": "^2.0.3",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"dependencies": {
"axios": "^1.5.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"isomorphic-ws": "^5.0.0",
"process": "^0.11.10",
"randombytes": "^2.1.0",
"stream-browserify": "^3.0.0",
"ws": "^8.14.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"setupFilesAfterEnv": [],
"testTimeout": 15000
},
"files": [
"dist/"
],
"packageManager": "pnpm@9.12.1+sha256.91452fdfa46234ae447d46d5c4fc4e7e0a7058f90495c4b6f77f8beebbb154e3"
}