-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.83 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
{
"name": "@the-software-compagny/nestjs_module_twurple",
"version": "1.0.0",
"description": "Twitch API/Chat/PubSub with Twurple NestJS module",
"repository": "https://github.com/The-Software-Compagny/nestjs_module_twurple.git",
"author": "tacxou <12997062+tacxou@users.noreply.github.com> (https://github.com/tacxou)",
"contributors": [
{
"name": " tacxou",
"email": "12997062+tacxou@users.noreply.github.com",
"url": "https://github.com/tacxou"
},
{
"name": "Contributors",
"url": "https://github.com/The-Software-Compagny/nestjs_module_twurple/graphs/contributors"
}
],
"license": "BSD-3-Clause",
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"build:watch": "tsc -w",
"postbuild": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json"
},
"dependencies": {
"@twurple/auth": "^7.1.0"
},
"devDependencies": {
"@nestjs/common": "^10.3.9",
"@nestjs/core": "^10.3.9",
"@twurple/api": "^7.1.0",
"@twurple/chat": "^7.1.0",
"@twurple/pubsub": "^7.1.0",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"cpr": "^3.0.1",
"eslint": "^8.56.0",
"reflect-metadata": "^0.2.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"rxjs": "^7.8.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0",
"@twurple/api": "^7.1.0",
"@twurple/chat": "^7.1.0",
"@twurple/pubsub": "^7.1.0"
},
"publishConfig": {
"access": "public"
}
}