-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.45 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
{
"name": "@echristian/edge-tts",
"version": "0.0.14",
"description": "Use Microsoft Edge's online text-to-speech service from JS code directly!",
"keywords": [
"tts"
],
"homepage": "https://github.com/ericc-ch/pkg-placeholder",
"bugs": "https://github.com/ericc-ch/pkg-placeholder/issues",
"author": "Erick Christian <[email protected]>",
"type": "module",
"exports": {
".": {
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"bin": {
"@echristian/edge-tts": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsx ./scripts/build.ts",
"lint": "eslint .",
"prepack": "pnpm run build",
"prepare": "simple-git-hooks",
"release": "bumpp && pnpm publish --access public",
"start": "tsx src/cli.ts",
"typecheck": "tsc --noEmit"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
},
"devDependencies": {
"@echristian/eslint-config": "^0.0.18",
"@types/node": "^22.13.1",
"bumpp": "^10.0.2",
"eslint": "^9.19.0",
"knip": "^5.43.6",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.6",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"packageManager": "[email protected]",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
},
"dependencies": {
"citty": "^0.1.6"
}
}