-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.23 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
{
"name": "OR-contracts",
"version": "1.0.0",
"description": "OR contracts",
"scripts": {
"compile": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat compile",
"test": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat test",
"test:parallel": "NODE_OPTIONS=\"--experimental-loader ts-node/esm/transpile-only\" hardhat test ./test/**/Test*.ts --parallel",
"test:local": "hardhat --network localhost test",
"test:deploy": "bun ./scripts/deploy-test.ts",
"lint": "hardhat check",
"build": "rm -rf ./build/deploy ./build/hardhat.config.js && hardhat compile && tsc",
"format": "prettier --write .",
"prepublishOnly": "bun run build",
"pub": "npm publish --access public",
"wikiCheck": "bun ./scripts/wikiCheck.ts"
},
"files": [
"build",
"contracts/**/*.sol",
"artifacts",
"deployments/mainnet/*.json",
"deployments/archive/**/*.json"
],
"main": "index.js",
"devDependencies": {
"@ensdomains/dnsprovejs": "^0.5.1",
"@nomicfoundation/hardhat-toolbox-viem": "^3.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@viem/anvil": "^0.0.10",
"@vitest/expect": "^1.6.0",
"abitype": "^1.0.2",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"hardhat": "^2.22.2",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.12.4",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^8.0.0",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"viem": "^2.12.0"
},
"dependencies": {
"@ensdomains/buffer": "^0.1.1",
"@ensdomains/ensjs": "^4.0.0",
"@ensdomains/solsha1": "0.0.3",
"@openzeppelin/contracts": "^4.1.0",
"@openzeppelin/contracts-upgradeable": "^5.1.0",
"dns-packet": "^5.3.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ensdomains/ens-contracts.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ensdomains/ens-contracts/issues"
},
"homepage": "https://github.com/ensdomains/ens-contracts#readme",
"volta": {
"node": "16.20.2"
}
}