-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 969 Bytes
/
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
{
"name": "redis-union-find",
"module": "index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "1.0.0",
"description": "Union Find data structure using Redis",
"scripts": {
"build": "bun build --target=node ./src/index.ts --outfile=dist/index.js && bun run build:declaration",
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
"postbuild": "rimraf tsconfig.types.tsbuildinfo"
},
"devDependencies": {
"@types/bun": "latest",
"rimraf": "^5.0.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@upstash/redis": "^1.31.5"
},
"repository": {
"type": "git",
"url": "https://github.com/MeshanKhosla/redis-union-find"
},
"keywords": [
"redis",
"union-find",
"data-structure",
"disjoint set"
],
"author": "Meshan Khosla",
"license": "MIT",
"files": [
"dist/*.js",
"dist/*.d.ts"
]
}