generated from SocketSomeone/nestjs-open-source-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@necord/lavalink",
"description": "A implementation of lavalink-client for Necord",
"version": "1.1.4",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"prepublish:npm": "npm run build",
"publish:npm": "release-it",
"prepublish:dev": "npm run build",
"publish:dev": "npm publish --access public --tag dev",
"prepare": "husky",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ignore-pattern .gitignore src/**/*.ts"
},
"lint-staged": {
"*.ts": "npm run format"
},
"directories": {
"lib": "src",
"test": "test"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"keywords": [
"necord",
"lavalink",
"lavalink-client",
"music",
"discord"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/necordjs/lavalink.git"
},
"bugs": {
"url": "https://github.com/necordjs/lavalink"
},
"author": "Alexey Filippov <[email protected]>",
"contributors": [
"Alexey Filippov <[email protected]>"
],
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "19.6.1",
"@commitlint/config-angular": "19.7.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@favware/npm-deprecate": "2.0.0",
"@nestjs/common": "10.4.15",
"@nestjs/core": "10.4.15",
"@nestjs/testing": "10.4.15",
"@types/jest": "29.5.14",
"@types/node": "22.10.9",
"discord.js": "^14.16.2",
"eslint": "^9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "5.2.3",
"globals": "^15.14.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lavalink-client": "^2.4.0",
"lint-staged": "15.4.1",
"necord": "^6.8.6",
"prettier": "3.4.2",
"reflect-metadata": "0.2.2",
"release-it": "18.1.1",
"rimraf": "6.0.1",
"rxjs": "7.8.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.21.0"
},
"peerDependencies": {
"@nestjs/common": "^10.2.0 || ^11.0.0",
"@nestjs/core": "^10.2.0 || ^11.0.0",
"discord.js": "^14.0.1",
"lavalink-client": "^2.4.0",
"necord": "^6.0.0",
"reflect-metadata": "^0.2.1",
"rxjs": "^7.2.0"
}
}