forked from farcasterxyz/hub-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "@farcaster/shuttle",
"version": "0.6.11",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"license": "MIT",
"dependencies": {
"@farcaster/hot-shots": "^10.0.0",
"@farcaster/hub-nodejs": "^0.12.6",
"commander": "11.0.0",
"dotenv": "16.4.5",
"ioredis": "^5.3.2",
"kysely": "^0.26.1",
"neverthrow": "^6.0.0",
"pg": "^8.12.0",
"pg-cursor": "^2.10.3",
"pino": "^8.12.1",
"pino-pretty": "^10.0.0",
"sql-formatter": "^13.0.0",
"tiny-typed-emitter": "^2.1.0"
},
"scripts": {
"build": "tsup --config tsup.config.ts",
"start": "tsx src/example-app/app.ts",
"clean": "rimraf ./dist",
"lint": "biome format src/ --write && biome check src/ --apply",
"lint:ci": "biome ci src/",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles --forceExit",
"test:ci": "ENVIRONMENT=test NODE_OPTIONS=--experimental-vm-modules jest --ci --forceExit --coverage",
"prepublishOnly": "yarn run build"
},
"devDependencies": {
"@commander-js/extra-typings": "11.0.0",
"@types/humanize-duration": "^3.27.1",
"@types/pg": "^8.10.3",
"@types/pg-cursor": "^2.7.0",
"@types/node": "^20.11.30",
"biome-config-custom": "*",
"bullmq": "^5.7.1",
"prettier-config-custom": "*"
}
}