-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
69 lines (69 loc) · 1.71 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
{
"name": "node-voicevox-engine",
"version": "0.2.2",
"main": "index.js",
"types": "index.d.ts",
"license": "LGPL-3.0",
"scripts": {
"postinstall": "node script/download-dict.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"compile": "node-gyp rebuild",
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"example": "ts-node -r tsconfig-paths/register example/index.ts",
"start": "ts-node -r tsconfig-paths/register api.ts"
},
"keywords": [
"VOICEVOX",
"texttospeech"
],
"author": "y-chan <[email protected]>",
"gypfile": true,
"homepage": "https://github.com/y-chan/node-voicevox-engine#readme",
"bugs": {
"url": "https://github.com/y-chan/node-voicevox-engine/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/y-chan/node-voicevox-engine"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"index.d.ts",
"index.js",
"engine",
"core",
"lib",
"script",
"engine.cc",
"engine.h",
"binding.gyp",
"default.csv"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^4.1.0",
"node-fetch": "^2.6.5",
"tar": "^6.1.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@types/node": "^16.9.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"fastify": "^3.22.0",
"fastify-cors": "^6.0.2",
"fastify-swagger": "^4.12.4",
"node-gyp": "^8.2.0",
"prettier": "^2.4.0",
"tsconfig-paths": "^3.11.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}