-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 KB
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
{
"name": "@witnet/wrapped-wit",
"version": "1.3.9",
"author": "Witnet Foundation <info@witnet.foundation>",
"description": "Wrapped/WIT Solidity contracts and CLI tools",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/witnet/witnet-wrapped-wit"
},
"type": "module",
"exports": "./src/index.js",
"bin": {
"witwrap": "src/bin/cli/index.cjs",
"unwrapper": "src/bin/unwrapper.js"
},
"files": [
"addresses.json",
"artifacts",
"contracts",
"settings.json",
"src"
],
"scripts": {
"compile": "npx hardhat compile",
"deploy": "npx hardhat run scripts/deploy.js",
"fmt": "solhint --max-warnings 30 \"contracts/**/*.sol\" && eslint --ext .js,.ts,.cjs . --ignore-path .gitignore",
"fmt!": "solhint --max-warnings 30 \"contracts/**/*.sol\" --fix && eslint --ext .js,.ts,.cjs . --fix --ignore-path .gitignore",
"prepare": "npx hardhat compile --force",
"start": "node ./src/bin/unwrapper.js",
"test": "node ./src/bin/cli/index.cjs",
"verify": "npx hardhat verify"
},
"keywords": [
"ethereum",
"witnet",
"wit/oracle",
"$WIT",
"token",
"ERC-20"
],
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^4.0.2",
"@nomicfoundation/hardhat-ignition": "^3.0.3",
"@nomicfoundation/hardhat-ignition-ethers": "^3.0.3",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@nomicfoundation/hardhat-verify": "^3.0.3",
"@openzeppelin/community-contracts": "github:OpenZeppelin/openzeppelin-community-contracts#master",
"@openzeppelin/contracts": "^5.4.0",
"@openzeppelin/contracts-upgradeable": "^5.4.0",
"hardhat": "^3.0.7"
},
"dependencies": {
"@witnet/solidity": "^3.0.14",
"@witnet/sdk": "^3.0.0",
"cross-env": "^10.1.0",
"dotenv": "^17.2.3",
"ethrpc-gateway": "^2.3.1",
"inquirer": "^8.2.7",
"lodash.merge": "^4.6.2",
"moment": "^2.30.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@witnet/sdk",
"@witnet/solidity",
"bufferutil",
"es5-ext",
"esbuild",
"keccak",
"protobufjs",
"secp256k1",
"utf-8-validate"
]
}
}