-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 927 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 927 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
33
34
35
36
37
{
"name": "@2pi-network/sdk",
"version": "0.1.0-alpha.30",
"author": "2PI",
"main": "./dist/index.js",
"homepage": "https://github.com/2pinetwork/sdk",
"license": "MIT",
"scripts": {
"build": "tsc --module commonjs",
"clean": "tsc --build --clean",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js,.ts",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/2pinetwork/sdk.git"
},
"bugs": {
"url": "https://github.com/2pinetwork/sdk/issues"
},
"devDependencies": {
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"eslint": "^8.15.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"dependencies": {
"axios": "^0.27.2",
"ethers": "^5.6.6"
},
"publishConfig": {
"access": "public"
}
}