-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.4 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
{
"name": "pcm-ringbuf-player",
"version": "0.0.6",
"description": "Plays PCM Audio in the browser leveraging a ring buffer for efficient transport of data",
"keywords": [
"audio",
"pcm",
"player",
"webaudio",
"stream",
"websocket"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepare": "tsc --build",
"test": "jest --silent",
"coverage": "jest --silent --coverage",
"build": "tsc --build",
"clean": "tsc --build --clean",
"typecheck": "tsc --noEmit",
"lint": "eslint --ext .js,.ts,.tsx .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|tsx|json)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/gozmanyoni/pcm-ringbuf-player.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/gozmanyoni/pcm-ringbuf-player/issues"
},
"dependencies": {
"ringbuf.js": "^0.3.6"
},
"devDependencies": {
"@types/audioworklet": "^0.0.50",
"@types/jest": "^29.5.4",
"@types/node": "^18.11.9",
"@types/webaudioapi": "^0.0.27",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}