-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.65 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.65 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
{
"name": "web-audio-api-player",
"version": "5.3.2",
"description": "web audio api player",
"keywords": [
"web",
"audio",
"api",
"javascript",
"typescript",
"player",
"promises",
"event-driven",
"play",
"sound",
"playlist"
],
"homepage": "https://github.com/chrisweb/web-audio-api-player#readme",
"bugs": {
"url": "https://github.com/chrisweb/web-audio-api-player/issues"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com/chrisweb/web-audio-api-player.git"
},
"license": "MIT",
"author": "chrisweb (https://chris.lu)",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"example": "examples"
},
"type": "module",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin typescript --configImportAttributesKey with",
"lint": "npx eslint src/**/* examples/simple-player/client/**/* examples/simple-player/server/**/*",
"watch": "rollup -cw ./scripts/dist.js"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.1",
"@eslint/js": "9.23.0",
"@rollup/plugin-node-resolve": "16.0.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "12.1.2",
"@typescript-eslint/eslint-plugin": "8.28.0",
"@typescript-eslint/parser": "8.28.0",
"eslint": "9.23.0",
"globals": "16.0.0",
"rollup": "4.37.0",
"typescript": "5.8.2"
},
"overrides": {
"serialize-javascript": "6.0.2"
}
}