-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.06 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.06 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
75
76
77
78
79
80
81
82
83
{
"name": "@prsm/grove",
"version": "1.7.5",
"description": "",
"main": "./lib/index.js",
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"exports": {
".": "./lib/index.js",
"./throttle": "./lib/internal/throttle/index.js",
"./cache": "./lib/internal/cache/index.js",
"./hash": "./lib/internal/hash/index.js",
"./http": "./lib/internal/http/index.js",
"./jwt": "./lib/internal/jwt/index.js",
"./queues": "./lib/internal/queues/index.js",
"./schedules": "./lib/internal/schedules/index.js",
"./shared": "./lib/shared/index.js",
"./ws": "./lib/internal/ws/index.js"
},
"scripts": {
"dev": "tsc --watch --declaration",
"test": "tsx src/tests/index.ts",
"release": "bumpp package.json --commit 'Release %s' --push --tag && pnpm publish --access public"
},
"typesVersions": {
"*": {
"throttle": [
"lib/internal/throttle/index.d.ts"
],
"cache": [
"lib/internal/cache/index.d.ts"
],
"hash": [
"lib/internal/hash/index.d.ts"
],
"http": [
"lib/internal/http/index.d.ts"
],
"jwt": [
"lib/internal/jwt/index.d.ts"
],
"queues": [
"lib/internal/queues/index.d.ts"
],
"schedules": [
"lib/internal/schedules/index.d.ts"
],
"shared": [
"lib/shared/index.d.ts"
],
"ws": [
"lib/internal/ws/index.d.ts"
]
}
},
"author": "nvms",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^18.0.0",
"@types/node-cron": "^3.0.1",
"bumpp": "^9.1.0",
"manten": "0.1.0",
"tsx": "^3.12.6",
"typescript": "^4.5.5"
},
"dependencies": {
"@prsm/keepalive-ws": "^0.2.1",
"@types/ws": "^8.5.3",
"chalk": "^5.0.0",
"dotenv": "^16.0.0",
"ecdsa-sig-formatter": "^1.0.11",
"ejs": "^3.1.7",
"express": "^4.17.3",
"fast-glob": "^3.2.11",
"node-cron": "3.0.0",
"path-to-regexp": "^6.2.0",
"ws": "^8.5.0"
}
}