-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.53 KB
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
65
66
67
68
69
{
"name": "@audio/beat",
"version": "2.1.3",
"type": "module",
"description": "Beat detection \u2014 umbrella for @audio/beat-* atoms (onset detection, tempo estimation, beat tracking)",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./package.json": "./package.json"
},
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"sideEffects": false,
"scripts": {
"test": "node test.js",
"test:all": "npm test --workspaces --if-present && npm test",
"publish:all": "npm publish --workspaces && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/audiojs/beat.git"
},
"keywords": [
"beat",
"beat-detection",
"bpm",
"tempo",
"onset",
"onset-detection",
"rhythm",
"audio",
"dsp",
"signal-processing",
"music"
],
"author": "Dmitry Iv. <dfcreative@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/audiojs/beat/issues"
},
"homepage": "https://github.com/audiojs/beat#readme",
"engines": {
"node": ">=18"
},
"dependencies": {
"@audio/onset": "^1.0.0",
"@audio/beat-onset": "^1.0.0",
"@audio/beat-tempo": "^1.0.0",
"@audio/beat-detect": "^1.0.0",
"@audio/beat-track": "^1.0.0"
},
"devDependencies": {
"audio-decode": "^3.9.0",
"tst": "^9.4.0"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"workspaces": [
"packages/*"
],
"funding": "https://github.com/sponsors/audiojs"
}