-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.55 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.55 KB
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
{
"name": "fish-audio",
"version": "0.1.0",
"description": "To provide convenient Node.js program integration for https://docs.fish.audio",
"repository": {
"type": "git",
"url": "git+https://github.com/fishaudio/fish-audio-typescript.git"
},
"license": "MIT",
"author": "",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
}
},
"scripts": {
"test": "echo \"No tests yet\" && exit 0",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.json --module CommonJS --outDir dist/cjs --moduleResolution node",
"build:esm": "tsc --project tsconfig.json --outDir dist/esm --moduleResolution bundler",
"clean": "rm -rf dist"
},
"files": [
"dist"
],
"type": "module",
"devDependencies": {
"@types/command-exists": "^1.2.3",
"@types/node": "^24.9.1",
"@types/ws": "^8.18.1",
"tsup": "^8.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@msgpack/msgpack": "^3.1.2",
"command-exists": "^1.2.9",
"node-fetch": "^3.3.2",
"ws": "^8.18.3"
},
"keywords": [
"tts"
],
"bugs": {
"url": "https://github.com/fishaudio/fish-audio-typescript/issues"
},
"homepage": "https://github.com/fishaudio/fish-audio-typescript#readme"
}