-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
73 lines (73 loc) · 2.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@filecoin-station/core",
"version": "21.2.5",
"description": "Filecoin Station Core",
"license": "(Apache-2.0 AND MIT)",
"repository": {
"type": "git",
"url": "git+https://github.com/filecoin-station/core.git"
},
"main": "index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"station": "bin/station.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"format": "prettier --write .",
"lint": "npm run test:lint",
"start": "cross-env FIL_WALLET_ADDRESS=0x000000000000000000000000000000000000dEaD STATE_ROOT=.state CACHE_ROOT=.cache node ./bin/station.js",
"test": "npm run test:lint && npm run test:types && npm run test:unit",
"test:lint": "prettier --check . && standard",
"test:types": "tsc -p .",
"test:unit": "cross-env STATE_ROOT=test/.state CACHE_ROOT=test/.cache node --no-warnings=ExperimentalWarning node_modules/mocha/bin/_mocha",
"version": "node ./scripts/version.js",
"postinstall": "node ./scripts/post-install.js",
"postpublish": "node ./scripts/post-publish.js",
"release": "np"
},
"standard": {
"env": [
"mocha"
]
},
"devDependencies": {
"@types/yargs": "^17.0.24",
"cross-env": "^7.0.3",
"get-stream": "^9.0.0",
"mocha": "^10.2.0",
"np": "^10.0.0",
"prettier": "^3.0.0",
"standard": "^17.0.0",
"stream-match": "^1.2.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@filecoin-station/spark-impact-evaluator": "^1.1.0",
"@glif/filecoin-address": "^3.0.0",
"@influxdata/influxdb-client": "^1.33.2",
"@ipld/car": "^5.2.6",
"@sentry/node": "^8.2.1",
"@web3-storage/car-block-validator": "^1.2.0",
"ethers": "^6.8.1",
"execa": "^9.0.2",
"ipfs-unixfs-exporter": "^13.4.0",
"p-retry": "^6.1.0",
"tar": "^7.0.0",
"undici": "^6.14.1",
"unzip-stream": "^0.3.1",
"w3name": "^1.0.8",
"yargs": "^17.7.1"
},
"files": [
"bin",
"commands",
"dist",
"lib",
"scripts"
],
"sentryEnvironment": "development"
}