-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
103 lines (103 loc) · 2.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "atomex-sdk",
"version": "0.6.6",
"description": "Atomex SDK",
"engines": {
"node": ">=16.14.0",
"npm": ">=8.7.0"
},
"main": "dist/node/index.js",
"module": "dist/node/index.mjs",
"browser": "dist/browser/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"node": {
"import": "./dist/node/index.mjs",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.mjs"
},
"browser": {
"import": "./dist/browser/index.js",
"default": "./dist/browser/index.js"
},
"default": "./dist/node/index.js"
},
"./development": {
"node": {
"import": "./dist/node/development/index.mjs",
"require": "./dist/node/development/index.cjs",
"default": "./dist/node/development/index.mjs"
},
"browser": {
"import": "./dist/browser/development/index.js",
"default": "./dist/browser/development/index.js"
},
"default": "./dist/node/development/index.js"
}
},
"dependencies": {
"@taquito/beacon-wallet": "^13.0.0",
"@taquito/signer": "^13.0.0",
"@taquito/taquito": "^13.0.0",
"bignumber.js": "^9.0.2",
"buffer": "^6.0.3",
"elliptic": "^6.5.4",
"lodash.isplainobject": "^4.0.6",
"nanoid": "^3.3.4",
"node-fetch": "^2.6.7",
"web3": "^1.7.4"
},
"peerDependencies": {
"@airgap/beacon-sdk": "^3.1.1",
"@temple-wallet/dapp": "^7.0.0"
},
"devDependencies": {
"@types/elliptic": "^6.4.14",
"@types/jest": "^28.1.3",
"@types/lodash.isplainobject": "^4.0.7",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"esbuild": "^0.14.48",
"eslint": "^8.18.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^28.1.1",
"jest-fetch-mock": "^3.0.3",
"jest-websocket-mock": "^2.3.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"scripts": {
"build": "node ./scripts/build.mjs",
"test": "jest",
"test-watch": "jest --watch",
"lint": "eslint . --ext .ts",
"check-types": "tsc --project tsconfig.build.json",
"watch": "tsc --project tsconfig.json --watch"
},
"typesVersions": {
"*": {
"development": [
"dist/types/index.d.ts"
]
}
},
"license": "GPLv3",
"author": "Andrew Skubarenko <[email protected]>, Michael Zaikin <[email protected]>",
"homepage": "https://sdk.atomex.me",
"keywords": [
"atomex"
],
"repository": {
"type": "git",
"url": "git+https://github.com/atomex-protocol/atomex-sdk.git"
},
"bugs": {
"url": "https://github.com/atomex-protocol/atomex-sdk/issues"
},
"publishConfig": {
"access": "public"
}
}