-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.08 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
{
"name": "aws-s2t",
"version": "0.0.1",
"author": "Ubugeeei <[email protected]>",
"license": "MIT",
"type": "module",
"description": "Amazon Transcribe Speech to Text client for TypeScript",
"main": "aws-s2t/dist/index.js",
"keywords": [
"amazon-transcribe",
"amazon",
"transcribe",
"speech",
"speech-to-text",
"text",
"typescript"
],
"scripts": {
"build": "tsx build",
"fmt": "biome format .",
"lint": "oxlint",
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*": [
"pnpm run fmt",
"pnpm run lint"
]
},
"volta": {
"node": "20.10.0",
"pnpm": "8.12.1"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/dts-bundle": "^0.0.35",
"@types/node": "^20.10.6",
"chainsi": "^0.0.1",
"esbuild": "^0.19.11",
"husky": "^8.0.3",
"oxlint": "^0.0.22",
"rimraf": "^5.0.5",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.1.1"
},
"dependencies": {
"dts-bundle": "^0.7.3"
}
}