-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.77 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
{
"name": "eigenda-sdk",
"version": "0.1.0",
"description": "Developer-friendly SDK for interacting with EigenDA proxy",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write \"src/**/*.ts\" \"examples/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"clean": "rm -rf dist",
"example:basic": "ts-node examples/basic-usage.ts",
"example:advanced": "ts-node examples/advanced-usage.ts",
"docs": "typedoc --out docs src/index.ts",
"release": "./scripts/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Layr-Labs/eigenda-sdk.git"
},
"keywords": [
"eigenda",
"blockchain",
"data-availability",
"ethereum",
"sdk"
],
"author": "Layr Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Layr-Labs/eigenda-sdk/issues"
},
"homepage": "https://github.com/Layr-Labs/eigenda-sdk#readme",
"dependencies": {
"axios": "^1.6.7",
"dotenv": "^16.4.1",
"ethers": "^6.10.0"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typescript": "^5.3.3"
},
"files": [
"dist/**/*"
]
}