-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.64 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
{
"name": "crestal-js-sdk",
"version": "1.2.1",
"description": "JavaScript SDK for Crestal Network services.",
"main": "dist/cjs/typescript-sdk/index.js",
"module": "dist/esm/typescript-sdk/index.js",
"types": "dist/types/typescript-sdk/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/typescript-sdk/index.js",
"require": "./dist/cjs/typescript-sdk/index.js",
"types": "./dist/types/typescript-sdk/index.d.ts"
},
"./utils": {
"import": "./dist/esm/utils/index.js",
"require": "./dist/cjs/utils/index.js",
"types": "./dist/types/utils/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build:types": "node build.types.mjs",
"build:js": "node build.mjs",
"build": "npm run clean && npm run build:types && npm run build:js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.3",
"siwe": "^2.3.2"
},
"devDependencies": {
"esbuild": "^0.19.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"keywords": [
"crestal",
"sdk",
"typescript",
"javascript"
],
"author": "crestal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/crestal-js-sdk.git"
},
"bugs": {
"url": "https://github.com/yourusername/crestal-js-sdk/issues"
},
"homepage": "https://github.com/yourusername/crestal-js-sdk#readme",
"engines": {
"node": ">=14.0.0"
}
}