-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "interview-transcriber",
"private": true,
"scripts": {
"start": "bun src/main.ts",
"commit": "git-cz",
"check": "npm-run-all check:*",
"check:biome": "biome check --fix",
"check:ts": "tsc --incremental",
"check:spell": "cspell --cache \"**/*\"",
"check:knip": "knip",
"ignore-sync": "ignore-sync .",
"prepare": "husky"
},
"dependencies": {
"@google/generative-ai": "0.21.0",
"@googleapis/drive": "8.14.0",
"consola": "3.4.0",
"csv-parse": "5.6.0",
"discord.js": "14.17.3",
"fluent-ffmpeg": "2.1.3",
"mime": "4.0.6",
"unique-string": "3.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@commitlint/types": "19.5.0",
"@cspell/cspell-types": "8.17.2",
"@tsconfig/bun": "1.0.7",
"@tsconfig/strictest": "2.0.5",
"@types/bun": "1.2.0",
"@types/fluent-ffmpeg": "2.1.27",
"@types/node": "22.10.10",
"commitizen": "4.3.1",
"cspell": "8.17.2",
"husky": "9.1.7",
"ignore-sync": "8.0.0",
"knip": "5.43.5",
"npm-run-all2": "7.0.2",
"typescript": "5.7.3"
},
"trustedDependencies": ["@biomejs/biome"]
}