-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 865 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 865 Bytes
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
{
"name": "@filoz/filecoin-pay-auction-bot",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint && prettier --check . && tsc -p .",
"lint:fix": "eslint --fix && prettier --write .",
"start": "node bin/bot.js",
"start:stats": "node bin/stats.js",
"test": "npm run lint && npm run test:unit",
"test:unit": "node --test 'tests/**/*.test.js'"
},
"dependencies": {
"@filoz/synapse-core": "^0.1.4",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"dotenv": "^17.2.3",
"prom-client": "^15.1.0",
"sushi": "^6.4.10",
"viem": "^2.44.4"
},
"devDependencies": {
"@types/node": "^25.0.8",
"neostandard": "^0.12.1",
"prettier": "^3.5.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.5.5"
}
}