-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "wormhole-sync",
"version": "0.1.1",
"description": "Sync tool for Wormhole",
"author": {
"name": "Jeff Matson",
"url": "https://jeffmatson.net"
},
"homepage": "https://github.com/JeffMatson/wormhole-sync",
"bugs": {
"url": "https://github.com/JeffMatson/wormhole-sync/issues"
},
"license": "GPL-3.0-or-later",
"repository": "github:JeffMatson/wormhole-sync",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "bun run ./src/index.ts",
"prisma-generate": "prisma generate",
"prisma-migrate": "prisma migrate dev"
},
"devDependencies": {
"@types/bun": "^1.1.10",
"@types/cli-progress": "^3.11.6",
"@types/qs": "^6.9.16",
"@types/react": "^18.3.11",
"@types/uuid": "^10.0.0",
"prisma": "^5.20.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.658.1",
"@prisma/client": "^5.20.0",
"async-await-queue": "^2.1.4",
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"consola": "^3.2.3",
"date-fns": "^4.1.0",
"delay": "^6.0.0",
"es-toolkit": "^1.23.0",
"file-type": "^19.5.0",
"ink": "^5.0.1",
"is-svg": "^5.1.0",
"p-queue": "^8.0.1",
"qs": "^6.13.0",
"uuid": "^10.0.0",
"zod": "^3.23.8"
}
}