-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.25 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.25 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
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
{
"name": "@tacxou/nestjs_module_twurple",
"version": "1.1.1",
"description": "Twitch API/Chat/PubSub with Twurple NestJS module",
"repository": "https://github.com/tacxou/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/tacxou/nestjs_module_twurple/graphs/contributors"
}
],
"license": "BSD-3-Clause",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "bun build ./src/index.ts --outdir ./dist --target node --splitting --packages external",
"build:type": "tsc --emitDeclarationOnly",
"build:cpr": "cpr README.md dist/README.md && cpr LICENSE dist/LICENSE && cpr package.json dist/package.json",
"postbuild": "bun build:type && bun build:cpr",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage --coverage-reporter lcov"
},
"dependencies": {
"@twurple/auth": "^8.0.3"
},
"devDependencies": {
"@nestjs/common": "^11.1.16",
"@nestjs/core": "^11.1.16",
"@twurple/api": "^8.0.3",
"@twurple/chat": "^8.0.3",
"@twurple/pubsub": "^7.4.0",
"@types/node": "latest",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"cpr": "^3.0.1",
"eslint": "^10.0.3",
"reflect-metadata": "^0.2.2",
"prettier": "^3.8.1",
"rxjs": "^7.8.2",
"rimraf": "^6.1.3",
"ts-node": "^10.9.2"
},
"peerDependencies": {
"@nestjs/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"@nestjs/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0",
"typescript": "^5.0.0",
"@twurple/api": "^8.0.0",
"@twurple/chat": "^8.0.0",
"@twurple/pubsub": "^7.4.0"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.0.0"
},
"packageManager": "bun@1.3.10"
}