-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"name": "@openzeppelin/uniswap-hooks",
"version": "1.2.2",
"description": "Solidity library for secure and modular Uniswap hooks.",
"files": [
"/src/**/*.sol",
"!/src/mocks/**/*"
],
"scripts": {
"docs": "npm run prepare-docs && oz-docs",
"docs:watch": "oz-docs watch contracts docs/templates docs/config.js",
"prepare-docs": "scripts/prepare-docs.sh",
"lint": "forge fmt --check && npm run lint:solhint",
"lint:fix": "forge fmt",
"lint:solhint": "npm run lint:solhint:src && npm run lint:solhint:test",
"lint:solhint:src": "solhint --noPoster 'src/**/*.sol' --config solhint/solhint.src.config.js",
"lint:solhint:test": "solhint --noPoster 'test/**/*.sol' --config solhint/solhint.test.config.js",
"prepare": "husky"
},
"repository": "https://github.com/OpenZeppelin/uniswap-hooks.git",
"bugs": {
"url": "https://github.com/OpenZeppelin/uniswap-hooks/issues"
},
"author": "OpenZeppelin",
"license": "MIT",
"dependencies": {
"@openzeppelin/contracts": "^5.5.0",
"@uniswap/v4-core": "^1.0.2",
"@uniswap/v4-periphery": "^1.0.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.2.0",
"@openzeppelin/docs-utils": "^0.1.6",
"hardhat": "^2.26.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"solhint": "^6.0.1",
"solhint-plugin-openzeppelin": "file:scripts/solhint-custom",
"solidity-docgen": "^0.6.0-beta.36"
},
"lint-staged": {
"**/*.sol": [
"forge fmt --check"
],
"src/**/*.sol": [
"solhint --noPoster --config solhint/solhint.src.config.js"
],
"test/**/*.sol": [
"solhint --noPoster --config solhint/solhint.test.config.js"
]
},
"overrides": {
"tmp": ">=0.2.4",
"cookie": ">=0.7.0"
}
}