-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 847 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 847 Bytes
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
{
"name": "voiceprint",
"version": "0.0.0",
"description": "voice fingerprint system for voice recognition",
"keywords": [
"voiceprint",
"voice",
"recognition"
],
"repository": {
"type": "git",
"url": "https//github.com/Forgata/voiceprint"
},
"license": "MIT",
"author": "Forgata",
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"enroll": "npm run build && nodemon -- enroll",
"verify": "npm run build && nodemon -- verify"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@types/wav": "^1.0.4",
"nodemon": "^3.1.14",
"typescript": "^5.9.3"
},
"dependencies": {
"@picovoice/cobra-node": "^3.0.2",
"@picovoice/pvrecorder-node": "^1.2.8",
"chalk": "^5.6.2",
"dotenv": "^17.3.1",
"meyda": "^5.6.3",
"wav": "^1.0.2"
}
}