-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "@spotify/basic-pitch",
"version": "0.0.0-development",
"description": "A JS module that takes audio and converts it to MIDI with machine learning",
"main": "cjs/index.js",
"module": "esm/index.js",
"license": "Apache-2.0",
"types": "types",
"files": [
"cjs",
"esm",
"types",
"src",
"model"
],
"scripts": {
"test": "web-scripts test",
"lint": "web-scripts lint",
"build": "web-scripts build",
"commit": "web-scripts commit",
"release": "web-scripts release",
"format": "web-scripts format",
"prepublishOnly": "$npm_execpath run build"
},
"release": {
"branches": ["main"]
},
"husky": {
"hooks": {
"commit-msg": "web-scripts commitmsg",
"pre-commit": "web-scripts precommit"
}
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@spotify/eslint-config-oss": "^1.0.2",
"@spotify/web-scripts": "^13.0.1",
"@tensorflow/tfjs-node": "^3.2.0",
"@types/jest": "^27.0.0",
"@types/node": "^14.14.31",
"audio-loader": "^1.0.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"midi-writer-js": "^1.7.5",
"synth-js": "^0.1.2",
"ts-jest": "^27.0.0",
"web-audio-api": "^0.2.2"
},
"dependencies": {
"@tensorflow/tfjs": "^3.2.0",
"@tonejs/midi": "^2.0.28"
}
}