-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
64 lines (64 loc) · 1.46 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
57
58
59
60
61
62
63
64
{
"name": "pitchy",
"description": "A simple pitch detection library.",
"version": "0.0.0",
"files": [
"index.d.ts",
"index.js"
],
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"scripts": {
"build": "run-s build:clean build:types",
"build:clean": "rimraf index.d.ts",
"build:types": "tsc -p tsconfig.declaration.json",
"fmt": "prettier --write .",
"prepack": "npm run build",
"test": "run-p test:*",
"test:fmt": "prettier --check .",
"test:lint": "eslint --ext .js,.cjs,.mjs .",
"test:types": "tsc",
"test:unit": "uvu",
"serve": "http-server -c-1 docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ianprime0509/pitchy.git"
},
"keywords": [
"pitch",
"detection",
"music",
"dsp"
],
"author": {
"name": "Ian Johnson",
"email": "ian@ianjohnson.dev"
},
"license": "0BSD",
"bugs": {
"url": "https://github.com/ianprime0509/pitchy/issues"
},
"homepage": "https://github.com/ianprime0509/pitchy#readme",
"dependencies": {
"fft.js": "^4.0.4"
},
"devDependencies": {
"eslint": "^8.36.0",
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"prettier": "3.2.5",
"rimraf": "^5.0.1",
"semantic-release": "^23.0.0",
"typescript": "^5.0.2",
"uvu": "^0.5.6"
}
}