-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"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://[email protected]/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"
},
"scripts": {
"build": "rollup -c ./scripts/dist.js",
"lint": "npx eslint src/**/* examples/simple-player/client/**/* examples/simple-player/server/**/*",
"watch": "rollup -cw ./scripts/dist.js"
},
"devDependencies": {
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.11.1",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "9.11.1",
"globals": "15.9.0",
"rollup": "4.22.5",
"rollup-plugin-typescript2": "0.36.0",
"typescript": "5.6.2"
},
"type": "module"
}