-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
46 lines (46 loc) · 1.37 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
{
"name": "@AstralProtocol/astralprotocol",
"description": "Tools and infrastructure for onchain location-based apps.",
"version": "1.0.0",
"author": {
"name": "AstralProtocol",
"url": "https://github.com/AstralProtocol"
},
"workspaces": [
"packages/*",
"docs"
],
"dependencies": {
"@openzeppelin/contracts": "^5.0.1"
},
"devDependencies": {
"@prb/test": "^0.6.4",
"forge-std": "github:foundry-rs/forge-std#v1.7.5",
"prettier": "3.2.5",
"solhint": "^3.6.2"
},
"keywords": [
"blockchain",
"ethereum",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"private": true,
"scripts": {
"clean": "rm -rf cache out",
"build": "forge build",
"lint": "bun run lint:sol && bun run prettier:check",
"lint:sol": "forge fmt --check && bun solhint {script,src}/**/*.sol",
"prettier:check": "prettier --check '*.{json,md,yml}' --ignore-path '.prettierignore'",
"prettier:write": "prettier --write '*.{json,md,yml}' --ignore-path '.prettierignore'",
"docs:dev": "yarn workspace docs start",
"docs:build": "yarn workspace docs build",
"docs:deploy": "yarn workspace docs deploy",
"test": "forge test",
"test:coverage": "forge coverage",
"test:coverage:report": "forge coverage --report lcov && genhtml lcov.info --branch-coverage --output-dir coverage"
}
}