-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 947 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
{
"name": "deephide",
"version": "0.0.0",
"description": "real-time Node.js/TS system that hides and encrypts file inside an audio file by subtle human speech modulation.",
"homepage": "https://github.com/Forgata/deephide#readme",
"bugs": {
"url": "https://github.com/Forgata/deephide/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Forgata/deephide.git"
},
"license": "MIT",
"author": "Forgata",
"type": "module",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"dev": "npm run build && nodemon"
},
"devDependencies": {
"@types/node": "^25.3.3",
"nodemon": "^3.1.14",
"typescript": "^5.9.3"
},
"dependencies": {
"@noble/ciphers": "^2.1.1",
"@noble/hashes": "^2.0.1",
"@picovoice/pvrecorder-node": "^1.2.8",
"@subspace/reed-solomon-erasure.wasm": "^0.2.5",
"chalk": "^5.6.2",
"fft.js": "^4.0.4",
"wavefile": "^11.0.0"
}
}