-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 961 Bytes
/
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
{
"name": "@conduitxyz/sdk",
"version": "0.0.4",
"description": "[Conduit] Tools for working with Conduit chains",
"main": "dist/index",
"types": "dist/index",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"all": "yarn clean && yarn build && yarn test",
"build": "tsc -p tsconfig.json",
"test": "ts-mocha -p tsconfig.json test/**/*.spec.ts"
},
"keywords": [
"conduit",
"ethereum",
"sdk"
],
"homepage": "https://github.com/conduit-xyz/sdk#readme",
"license": "MIT",
"author": "ConduitXYZ, Inc.",
"repository": {
"type": "git",
"url": "https://github.com/conduit-xyz/sdk.git"
},
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"chai-as-promised": "^7.1.1",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.22.13"
},
"dependencies": {
"@eth-optimism/sdk": "^1.8.0",
"node-fetch": "2",
"typescript": "^4.9.4"
}
}