-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.86 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
{
"name": "@fancysoft/contracts",
"author": {
"name": "Fancy Software",
"url": "http://fancysoft.eth"
},
"repository": "git+https://github.com/fancysofthq/contracts.git",
"version": "0.2.0",
"license": "UNLICENSED",
"type": "module",
"engines": {
"node": "^18.0"
},
"scripts": {
"clean": "rm -r artifacts cache dist contracts/typechain",
"typechain": "typechain --target ethers-v5 \"artifacts/**/*.sol/!(*.dbg).json\" --out-dir contracts/typechain",
"build": "hardhat compile && pnpm run typechain && tsc",
"test": "pnpm run build && NODE_ENV=test mocha",
"deploy": "hardhat run scripts/deploy.js",
"node": "hardhat node"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nxsf/ipnft": "^0.4.0",
"@openzeppelin/contracts": "^4.8.0",
"ethers": "^5.7.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.2.0",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"hardhat": "2.12.0-esm.1",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.4"
},
"files": [
"dist/contracts/typechain",
"dist/src",
"contracts/**/*.sol"
],
"exports": {
"./src/*": "./dist/src/*",
"./typechain": "./dist/contracts/typechain/index.js",
"./typechain/*": "./dist/contracts/typechain/*"
},
"typesVersions": {
"*": {
"src/*": [
"dist/src/*"
],
"typechain": [
"dist/contracts/typechain/index.d.ts"
],
"typechain/*": [
"dist/contracts/typechain/*"
]
}
}
}