forked from Blad3Mak3r/lavaplayer-encoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "@dazzy/lavaplayer-encoding",
"version": "0.1.7",
"description": "Encode & decode lavaplayer tracks locally",
"main": "dist/src/index.js",
"typings": "typings/src/index.d.ts",
"files": [
"dist/src/**/*",
"typings/*"
],
"scripts": {
"test": "npm run test:browser && npm run test:node",
"test:browser": "jest --config jest.config.browser.js",
"test:node": "jest --config jest.config.node.js",
"build": "tsc",
"prepare": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dazzypark/lavaplayer-encoding.git"
},
"keywords": [
"lavaplayer",
"track"
],
"author": "dazzypark",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dazzypark/lavaplayer-encoding/issues"
},
"homepage": "https://github.com/dazzypark/lavaplayer-encoding#readme",
"devDependencies": {
"@babel/core": "^7.26.8",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.26.8",
"@babel/preset-typescript": "^7.26.0",
"@types/base64-js": "^1.3.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"dependencies": {
"base64-js": "^1.5.1"
}
}