-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "@manifoldfinance/bundle-simulator",
"version": "0.1.0",
"description": "Standalone repo for simulating specific bundles that need debugging.",
"files": [
"/dist/**/*",
"/contracts",
"/contracts/base",
"/contracts/interfaces",
"/contracts/libraries",
"/artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"!artifacts/contracts/test/**/*",
"!artifacts/contracts/base/**/*"
],
"scripts": {
"fmt": "npx prettier --config prettier.config.cjs --write contracts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manifoldfinance/bundle-simulator.git"
},
"keywords": [],
"author": "SEE CONTRIBUTORS",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/manifoldfinance/bundle-simulator/issues"
},
"homepage": "https://github.com/manifoldfinance/bundle-simulator#readme",
"devDependencies": {
"prettier": "^2.6.2",
"prettier-config-solidity": "^1.7.0",
"prettier-plugin-solidity": "^1.0.0-beta.19"
},
"dependencies": {
"@openzeppelin/contracts": "^4.6.0"
}
}