-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 934 Bytes
/
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
{
"name": "voicevox-client",
"version": "0.3.0",
"description": "Voicevox wrapper for ts/js",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"types": "dist/index.d.ts",
"repository": "https://github.com/voicevox-client/typescript",
"author": "tuna2134 <[email protected]>",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"prettier": "^3.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.25.1",
"typescript": "^5.0.2",
"@types/node": "^20.2.5",
"voicevox-client": "file:./"
},
"scripts": {
"test": "ts-node ./tests/basic.ts",
"build": "tsc",
"format": "prettier --write src/*.ts src/**/*.ts",
"lint": "prettier --check src/*.ts src/**/*.ts",
"doc": "typedoc --out docs src/**/*.ts src/*.ts"
},
"files": [
"dist"
]
}