forked from idriss-xyz/address-book
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.62 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
{
"name": "idriss-crypto",
"version": "1.7.11-experimental",
"main": "./lib/index.js",
"module": "./lib/exnext/index.js",
"exports": {
".": {
"import": "./lib/esnext/index.js",
"require": "./lib/index.js"
},
"./lib/browser": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./lib/browser.js": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./browser": {
"import": "./lib/esnext/browser.js",
"require": "./lib/browser.js"
},
"./cjs/browser": {
"require": "./lib/browser.js"
}
},
"repository": "https://github.com/idriss-crypto/ts-library.git",
"author": "IDriss.xyz",
"license": "MIT",
"scripts": {
"build": "tsc -d --declarationDir lib --module commonjs && tsc -d --declarationDir lib/esnext --outDir lib/esnext --module es2020 && webpack --env m=1 && webpack --env m=2",
"buildDev": "tsc -d --declarationDir lib --watch",
"testE2e": "yarn hardhat test",
"compileWeb3": "yarn hardhat compile"
},
"dependencies": {
"@types/node-fetch": "^2.5.12",
"node-fetch": "^2.6.7",
"web3": "^1.7.4"
},
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-truffle5": "^2.0.6",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.7.3",
"@truffle/hdwallet-provider": "^2.0.11",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"mocha": "^9.2.0",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}