-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.84 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
{
"name": "@nxsf/ipnft",
"description": "Interplanetary Non-fungible File Token",
"author": {
"name": "Onyx Software Foundation",
"url": "http://nxsf.org",
"email": "[email protected]"
},
"repository": "git+https://github.com/nxsf/ipnft.git",
"version": "0.4.0",
"license": "MIT",
"type": "module",
"scripts": {
"clean": "rm -r artifacts cache contracts/typechain dist",
"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 script/deploy.js",
"node": "hardhat node"
},
"engines": {
"node": "^18.0"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/bytes": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@openzeppelin/contracts": "^4.7.3"
},
"devDependencies": {
"@ipld/dag-cbor": "^8.0.0",
"@multiformats/sha3": "^2.0.13",
"@nomiclabs/hardhat-ethers": "^2.2.1",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.2.0",
"@types/chai": "^4.3.3",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.7",
"chai": "^4.3.6",
"dotenv": "^16.0.3",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.7.2",
"hardhat": "2.12.0-esm.1",
"mocha": "^10.1.0",
"multiformats": "^10.0.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.8.4"
},
"files": [
"dist/contracts/typechain",
"dist/src",
"contracts/**/*.sol",
"dist/index.js",
"dist/index.d.ts"
],
"exports": {
".": "./dist/index.js",
"./typechain": "./dist/contracts/typechain"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
],
"index.d.ts": [
"dist/index.d.ts"
]
}
}
}