-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 KB
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
{
"name": "deepgram-voice-interaction-react",
"version": "0.1.0",
"description": "A React component for real-time transcription and voice agent interactions using Deepgram APIs",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"build:single-file": "node scripts/generate-single-file.js"
},
"keywords": [
"deepgram",
"voice",
"transcription",
"agent",
"react",
"audio",
"speech",
"ai"
],
"author": "Deepgram",
"license": "MIT",
"peerDependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^6.0.2",
"@rollup/plugin-typescript": "^8.3.2",
"@rollup/plugin-url": "^8.0.2",
"@types/jest": "^28.1.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"jest": "^28.1.1",
"rollup": "^2.75.6",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-raw": "^0.0.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^28.0.4",
"typescript": "^4.7.3"
},
"dependencies": {
"tslib": "^2.8.1"
}
}