-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 934 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
42
43
44
45
46
{
"name": "nemeos-sdk",
"version": "0.1.7",
"type": "module",
"description": "Nemeos SDK to facilitate integration with the Nemeos platform",
"license": "MIT",
"repository": "nemeos/nemeos-sdk",
"author": {
"name": "rigwild",
"email": "[email protected]",
"url": "https://rigwild.dev"
},
"keywords": [
"nemeos",
"sdk",
"blockchain",
"cryptocurrency",
"sdk-js",
"sdk-typescript"
],
"exports": "./dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src",
"dist",
"!**/*.tsbuildinfo",
"pnpm-lock.yaml"
],
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist .parcel-cache",
"prepublishOnly": "pnpm clean && pnpm build"
},
"dependencies": {
"ethers": "^6.13.1",
"ofetch": "^1.3.4"
},
"devDependencies": {
"dotenv": "^16.4.5",
"typescript": "^5.5.4"
}
}