-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.package.json
31 lines (30 loc) · 1.12 KB
/
build.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
{
"name": "@limitbreak/permit-c",
"version": "1.0.0",
"description": "PermitC extends the Uniswap Permit2 system for ERC20, ERC721 and ERC1155 tokens. This is an advanced approval system which allows for easier and more secure approvals across applications. Abstracting the approval process and adding in expirations allows users to be more insulated from the advanced logic of protocols which are more likely to be exploited.",
"main": "index.js",
"files": [
"/**/*.sol",
"/build/contracts/*.json",
"!/test",
"!/script"
],
"scripts": {
"compile": "hardhat compile",
"clean": "hardhat clean && rimraf artifacts build contracts/build cache *.tgz",
"prepack": "npm run clean && npm run compile && node scripts/prepack.js"
},
"author": "Limit Break, Inc.",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "4.0.0",
"hardhat": "2.19.5"
},
"dependencies": {
"@openzeppelin/contracts": "4.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/limitbreakinc/npm-permitc.git"
}
}