forked from chengsokdara/use-whisper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.05 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@chengsokdara/use-whisper",
"version": "0.2.0",
"description": "React Hook for OpenAI Whisper API with speech recorder and silence removal built-in.",
"keywords": [
"react",
"hook",
"hooks",
"openai",
"api",
"whisper",
"speech",
"voice",
"record",
"recorder",
"silence",
"remove",
"removal"
],
"homepage": "https://github.com/chengsokdara/use-whisper#readme",
"bugs": "https://github.com/chengsokdara/use-whisper/issues",
"license": "MIT",
"author": "Sokdara Cheng <[email protected]> (https://chengsokdara.github.io)",
"repository": "github:chengsokdara/use-whisper",
"scripts": {
"dev": "env NODE_ENV=development tsup",
"build": "env NODE_ENV=production tsup",
"lint-fix": "eslint ./src --ext .ts,.tsx --quiet --fix --ignore-path ./.gitignore",
"lint-format": "prettier --loglevel warn --write \"./**/*.{ts,tsx,css,md,json}\"",
"lint": "yarn lint-format && yarn lint-fix",
"test": "yarn run tsc && yarn run lint",
"prepublishOnly": "yarn run build"
},
"dependencies": {
"@chengsokdara/react-hooks-async": "^0.0.2",
"axios": "^1.3.4",
"hark": "^1.2.3",
"lamejs": "github:zhuker/lamejs",
"recordrtc": "^5.6.2"
},
"devDependencies": {
"@types/hark": "^1.2.2",
"@types/node": "^18.15.3",
"@types/react": "^18.0.28",
"@types/recordrtc": "^5.6.10",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"react": "^18.2.0",
"tsup": "^6.6.3",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "*"
},
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"node": "./dist/index.cjs",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
},
"type": "module",
"publishConfig": {
"access": "public"
}
}