-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
{
"name": "@lighthouse-web3/sdk",
"version": "0.3.7",
"description": "NPM package and CLI tool to interact with lighthouse protocol",
"main": "./dist/Lighthouse/index.js",
"types": "./dist/Lighthouse/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"start": "node index.js",
"test": "jest --runInBand",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts"
},
"bin": {
"lighthouse-web3": "dist/Commands/index.js"
},
"keywords": [
"lighthouse",
"lighthouse-cli",
"lighthouse npm package",
"web3 storage"
],
"repository": {
"type": "git",
"url": "https://github.com/lighthouse-web3/lighthouse-package.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"@lighthouse-web3/kavach": "^0.1.9",
"@peculiar/webcrypto": "^1.4.0",
"bls-eth-wasm": "^1.0.4",
"cli-spinner": "^0.2.10",
"commander": "^10.0.0",
"conf": "^10.1.1",
"crypto-js": "^4.2.0",
"ethers": "^6.7.1",
"fs-extra": "^11.1.1",
"kleur": "^4.1.5",
"mime-types": "^2.1.35",
"progress": "^2.0.3",
"read": "^1.0.7",
"recursive-fs": "^2.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-typescript": "^7.21.4",
"@types/cli-spinner": "^0.2.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/mime-types": "^2.1.1",
"@types/node": "^20.5.3",
"@types/read": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-jest": "^29.5.0",
"dotenv": "^16.3.1",
"eslint": "^8.38.0",
"jest": "^29.3.1",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}