-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
52 lines (52 loc) · 1.59 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
49
50
51
52
{
"name": "snekmate",
"version": "0.1.1-rc.1",
"description": "State-of-the-art, highly opinionated, hyper-optimised, and secure 🐍Vyper smart contract building blocks.",
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "AGPL-3.0-only",
"keywords": [
"security",
"library",
"ethereum",
"smart-contracts",
"evm",
"vyper",
"vyper-contracts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pcaversaccio/snekmate.git"
},
"homepage": "https://github.com/pcaversaccio/snekmate#readme",
"bugs": {
"url": "https://github.com/pcaversaccio/snekmate/issues"
},
"scripts": {
"prettier:check": "npx prettier -c \"**/*.{md,sol,js,json,yml,yaml,sh}\"",
"prettier:fix": "npx prettier -w \"**/*.{md,sol,js,json,yml,yaml,sh}\"",
"solhint:check": "npx solhint \"**/*.sol\"",
"solhint:fix": "npx solhint \"**/*.sol\" --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && npx eslint .",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && npx eslint . --fix"
},
"files": [
"src/snekmate/**/*.{vy,vyi}",
"!src/snekmate/**/mocks/**/*.{vy,vyi}",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"@openzeppelin/merkle-tree": "^1.0.7",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"ethers": "^6.13.4",
"keccak256": "^1.0.6",
"merkletreejs": "^0.4.0",
"prettier": "^3.4.2",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3"
}
}