-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) 路 1.66 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) 路 1.66 KB
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
53
54
{
"name": "snekmate",
"version": "0.1.3-rc.1",
"description": "State-of-the-art, highly opinionated, hyper-optimised, and secure 馃悕Vyper smart contract building blocks.",
"author": "pcaversaccio <pascal.caversaccio@hotmail.ch>",
"license": "AGPL-3.0-only",
"funding": "https://github.com/pcaversaccio/snekmate/blob/main/.github/FUNDING.yml",
"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"
},
"packageManager": "pnpm@11.21.0",
"scripts": {
"prettier:check": "prettier -c \"**/*.{md,sol,js,json,yml,yaml,sh}\"",
"prettier:fix": "prettier -w \"**/*.{md,sol,js,json,yml,yaml,sh}\"",
"solhint:check": "solhint \"**/*.sol\"",
"solhint:fix": "solhint \"**/*.sol\" --fix",
"lint:check": "pnpm prettier:check && pnpm solhint:check && eslint .",
"lint:fix": "pnpm prettier:fix && pnpm solhint:fix && eslint . --fix"
},
"files": [
"src/snekmate/**/*.{vy,vyi}",
"!src/snekmate/**/mocks/**/*.{vy,vyi}",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"@openzeppelin/merkle-tree": "1.0.8",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"ethers": "6.17.0",
"keccak256": "1.0.6",
"merkletreejs": "0.6.0",
"prettier": "3.9.6",
"prettier-plugin-sh": "0.19.0",
"prettier-plugin-solidity": "2.4.0",
"solhint": "6.2.3"
}
}