-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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": "@lavacoffee/utils",
"version": "0.1.0",
"description": "Utility tools to work for lavalink",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint --ext .ts src",
"test": "npm run lint && mocha",
"esm": "gen-esm-wrapper . ./dist/index.mjs",
"build": "rimraf dist && tsc && npm run esm",
"docs": "typedoc src/index.ts --excludePrivate --excludeInternal --excludeExternals"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavacoffee/utils.git"
},
"keywords": [
"lavalink",
"lavalink-utils",
"lavalink-filters",
"lavalink-encoding",
"lavacoffee",
"typescript"
],
"author": "azusfin",
"license": "MIT",
"bugs": {
"url": "https://github.com/lavacoffee/utils/issues"
},
"homepage": "https://github.com/lavacoffee/utils#readme",
"devDependencies": {
"@hazmi35/eslint-config": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^9.1.4",
"rimraf": "^3.0.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.4"
},
"dependencies": {
"@lavacoffee/datarw": "^0.1.0",
"@lavacoffee/types": "^0.1.0",
"base64-js": "^1.5.1"
}
}