-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.32 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
{
"name": "@sushiswap/v2-core",
"version": "1.0.0",
"description": "SushiSwap",
"keywords": [
"sushi",
"swap"
],
"homepage": "https://github.com/sushiswap/sushiswap/protocols/sushiswap#readme",
"bugs": {
"url": "https://github.com/sushiswap/sushiswap/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/sushiswap/sushiswap.git",
"directory": "protocols/sushiswap"
},
"license": "MIT",
"main": "exports/exports.js",
"types": "exports/exports.d.ts",
"author": "Matthew Lilley <[email protected]>",
"files": [
"artifacts",
"contracts",
"deploy",
"deployments",
"exports",
"typechain"
],
"scripts": {
"build": "TS_NODE_TRANSPILE_ONLY=1 hardhat compile",
"clean": "rm -rf .turbo node_modules artifacts cache exports typechain",
"export": "hardhat export --export-all exports.json && tsc -p tsconfig.exports.json --declaration",
"node": "hardhat node"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "npm:[email protected]",
"@openzeppelin/contracts": "3.1.0",
"@tenderly/hardhat-tenderly": "^1.0.13",
"@types/node": "18.11.18",
"dotenv": "16.3.1",
"eslint": "8.41.0",
"hardhat": "2.12.4",
"hardhat-deploy": "0.11.22",
"ts-node": "10.9.1",
"typescript": "5.0.4"
}
}