-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 881 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 881 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
38
39
{
"name": "@soul-forge/code-symphony",
"version": "0.1.1",
"description": "🎼 Listen to your code breathe - Every function has a chord, every module a melody",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"symphony": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"demo": "ts-node src/demo.ts",
"play": "ts-node src/cli.ts"
},
"keywords": [
"code-sonification",
"protein-hash",
"eigenvalues",
"music",
"432hz",
"soul-forge"
],
"author": "Soul Forge",
"license": "MIT",
"dependencies": {
"@s0fractal/protein-hash": "^0.1.1",
"tone": "^14.7.0",
"midi-writer-js": "^2.1.0",
"chalk": "^4.1.2",
"commander": "^11.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"jest": "^29.0.0",
"ts-node": "^10.0.0"
}
}