-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.1 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
63
64
65
{
"name": "tafrigh",
"version": "2.0.0",
"description": "A NodeJS library for transcribing audio/video to text.",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"type": "module",
"scripts": {
"build": "parcel build",
"test": "vitest run --coverage",
"e2e": "node --env-file .env $(which pnpm) exec vitest run --coverage --config vitest.e2e.config.ts",
"test:e2e:ci": "pnpm exec vitest --config vitest.e2e.config.ts --run"
},
"files": [
"dist/main.js",
"dist/main.js.map",
"dist/*.d.ts"
],
"dependencies": {
"deepmerge": "^4.3.1",
"ffmpeg-simplified": "^1.1.1",
"jsonstream-next": "^3.0.0",
"p-queue": "^8.0.1",
"pino": "^9.5.0"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"transcription",
"wit.ai",
"audio",
"video",
"nodejs"
],
"author": "Ragaeeb Haq",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@parcel/packager-ts": "^2.12.0",
"@parcel/transformer-typescript-types": "^2.12.0",
"@semantic-release/changelog": "^6.0.3",
"@types/eslint__js": "^8.42.3",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/jsonstream-next": "^3.0.3",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.4",
"dotenv-vault": "^1.26.2",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^3.9.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vitest-globals": "^1.5.0",
"parcel": "^2.12.0",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"packageManager": "[email protected]+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
}