-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@pedroloch/tuner",
"version": "1.0.1",
"description": "A javascript library to create a chromatic tuner that uses the ml5 pitch detection algorithm.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "del ./dist/*",
"build": "npm run clean && tsc",
"prepublish": "npm run build"
},
"keywords": [
"Tuner",
"Music",
"Typescript",
"ml5"
],
"author": "Pedro Loch",
"license": "MIT",
"dependencies": {
"@tensorflow/tfjs-converter": "^3.2.0",
"@tensorflow/tfjs-core": "^3.2.0",
"@tensorflow-models/body-pix": "1.1.2",
"@tensorflow-models/coco-ssd": "^2.0.0",
"@tensorflow-models/facemesh": "0.0.3",
"@tensorflow-models/handpose": "0.0.3",
"@tensorflow-models/knn-classifier": "1.2.1",
"@tensorflow-models/mobilenet": "2.0.3",
"@tensorflow-models/posenet": "^2.2.1",
"@tensorflow-models/speech-commands": "0.3.9",
"@tensorflow-models/universal-sentence-encoder": "^1.2.2",
"ml5": "^0.6.1"
},
"devDependencies": {
"del-cli": "^3.0.1",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedroloch/tuner.git"
}
}