-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1003 Bytes
/
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
{
"name": "foundry-vyper",
"version": "0.1.0",
"description": "Foundry template for writing Vyper smart contracts",
"author": "PatronumLabs YamenMerhi",
"license": "MIT",
"keywords": [
"vyper",
"template",
"foundry",
"foundry-vyper",
"evm",
"vyper",
"vyper-contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Patronum-Labs/foundry-vyper.git"
},
"homepage": "https://github.com/Patronum-Labs/foundry-vyper#readme",
"bugs": {
"url": "https://github.com/Patronum-Labs/foundry-vyper/issues"
},
"scripts": {
"build": "vyper src/**.vy",
"test": "forge test",
"snapshot": "forge snapshot",
"prettier:check": "npx prettier -c \"**/*.{md,sol,js,json,yml,yaml}\"",
"prettier:fix": "npx prettier -w \"**/*.{md,sol,js,json,yml,yaml}\"",
"solhint": "npx solhint \"**/*.sol\""
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^5.0.2"
}
}