-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "cosmicord.js",
"version": "1.1.0",
"description": "Cosmicord.js is a powerful and intuitive Lavalink wrapper designed to simplify the process of integrating Lavalink into your Node.js applications.",
"main": "dist",
"repository": {
"type": "git",
"url": "git+https://github.com/SudhanPlayz/Cosmicord.js.git"
},
"license": "GPL-3.0",
"types": "./typings/index.d.ts",
"keywords": [
"lavalink",
"wrapper",
"discord",
"music",
"player",
"audio",
"voice",
"node",
"nodejs",
"js",
"javascript",
"typescript",
"ts",
"cosmicord",
"cosmicord.js",
"cosmicordjs",
"cosmicord-js"
],
"contributors": [
{
"name": "SudhanPlayz",
"url": "https://github.com/SudhanPlayz"
},
{
"name": "NotWrench",
"url": "https://github.com/NotWrench"
}
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "yarn build && node dist/test",
"docs": "typedoc --json docs/typedoc.json src/index.ts --commentStyle all && tsc && node docs/generate.js",
"publish": "yarn build && npm publish --access public"
},
"devDependencies": {
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@discordjs/ts-docgen": "^0.4.1",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.3",
"@types/ws": "^8.5.4",
"discord.js": "^14.11.0",
"js-yaml": "^4.1.0",
"jsdoc-babel": "^0.5.0",
"tslib": "^2.5.0",
"typedoc": "^0.23.14",
"typescript": "^5.0.2"
},
"dependencies": {
"@discordjs/collection": "^1.4.0",
"node-fetch": "^2.6.9",
"ws": "^8.13.0"
}
}