-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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
{
"name": "@phifans/audio",
"description": "Another WebAudio library",
"keywords": [
"WebAudio"
],
"version": "0.0.7",
"license": "MIT",
"homepage": "https://phifans.github.io/audio/",
"repository": {
"type": "git",
"url": "git+https://github.com/PhiFans/audio.git"
},
"bugs": {
"url": "https://github.com/PhiFans/audio/issues"
},
"type": "module",
"files": [
"dist"
],
"main": "./dist/phifans-audio.js",
"module": "./dist/phifans-audio.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/phifans-audio.js"
}
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:docs": "typedoc --options typedoc.json"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typedoc": "^0.28.3",
"typescript": "~5.7.3",
"vite": "^6.1.1",
"vite-plugin-dts": "^4.5.3"
},
"dependencies": {
"@types/setimmediate": "^1.0.4",
"audio-decode": "^2.2.2",
"setimmediate": "^1.0.5"
}
}