-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.09 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.09 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
70
71
72
73
74
75
76
77
78
{
"name": "audio",
"version": "2.2.0",
"description": "Audio loading, playback, analysis and editing",
"type": "module",
"main": "audio.js",
"exports": {
".": {
"browser": "./dist/audio.js",
"default": "./audio.js"
},
"./core": "./core.js",
"./plan": "./plan.js",
"./stats": "./stats.js",
"./cache": "./cache.js",
"./fn/*": "./fn/*"
},
"types": "./audio.d.ts",
"bin": "./bin/cli.js",
"license": "MIT",
"repository": "audiojs/audio",
"files": [
"core.js",
"audio.js",
"audio.d.ts",
"plan.js",
"stats.js",
"cache.js",
"fn/",
"bin/",
"dist/"
],
"keywords": [
"audiojs",
"audio",
"dsp",
"pcm"
],
"scripts": {
"build": "node .esbuild.js",
"test": "node test/index.js",
"test:cli": "TST_PARALLEL=3 node test/cli.js",
"test:browser": "node test/browser.js",
"test:all": "CI=1 npm test && CI=1 npm run test:cli && npm run test:browser",
"version": "node -p \"var s=require('fs'),v=require('./package.json').version;s.writeFileSync('core.js',s.readFileSync('core.js','utf8').replace(/audio\\.version = '[^']+'/,'audio.version = \\''+v+'\\''));''\" && git add core.js",
"prepublishOnly": "npm run version && npm run test:all",
"serve": "node test/serve.js",
"demo": "vhs player.tape"
},
"dependencies": {
"@audio/decode-flac": "^1.1.0",
"@audio/decode-mp3": "^1.1.0",
"@audio/decode-wav": "^1.2.0",
"@audio/encode-flac": "^1.1.0",
"@audio/encode-mp3": "^1.1.0",
"@audio/encode-wav": "^1.1.0",
"a-weighting": "^2.0.1",
"audio-decode": "^3.10.0",
"audio-filter": "^2.2.2",
"audio-mic": "^1.0.0",
"audio-speaker": "^2.3.0",
"audio-type": "^2.4.1",
"beat-detection": "^1.1.0",
"encode-audio": "^1.5.1",
"fourier-transform": "^2.2.0",
"parse-duration": "^2.1.6",
"pcm-convert": "^3.1.1",
"pitch-detection": "^1.0.0",
"time-stretch": "^1.2.1",
"window-function": "^3.0.1"
},
"devDependencies": {
"audio-lena": "^3.0.0",
"esbuild": "^0.28.0",
"playwright": "^1.59.1",
"tst": "^9.4.0"
}
}