-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "@0xsequence/contracts-library",
"version": "1.0.0",
"description": "Solidity Contract Library for 0xSequence",
"repository": "https://github.com/0xsequence/contract-library.git",
"bugs": {
"url": "https://github.com/0xsequence/contract-library/issues"
},
"homepage": "https://github.com/0xsequence/contract-library#README.md",
"source": "src/index.ts",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Horizon Blockchain Games",
"license": "Apache-2.0",
"scripts": {
"build": "forge build --force",
"deploy": "forge script Deploy",
"test": "forge test",
"coverage": "forge coverage --report lcov",
"snapshot:compare": "forge snapshot --diff .gas-snapshot",
"snapshot:write": "forge snapshot",
"lint:init": "lefthook install",
"lint:sol": "solhint \"./src/**/*.sol\" \"./tests/**/*.sol\"",
"format:sol": "forge fmt"
},
"files": [
"src",
"dist"
],
"devDependencies": {
"@types/node": "^20.1.0",
"dotenv": "^16.1.4",
"ethers": "^5.7.2",
"keccak256": "^1.0.6",
"lefthook": "^1.11.12",
"merkletreejs": "^0.2.32",
"solhint": "^3.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}