-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 929 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
{
"name": "beam-sdk-web",
"description": "Beam SDK for web",
"keywords": [],
"author": "Merit Circle",
"license": "ISC",
"scripts": {
"sdk": "pnpm --filter @onbeam/sdk",
"sdk-example": "pnpm --filter beam-sdk-example-app",
"wagmi-example": "pnpm --filter beam-wagmi-example-app",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky",
"validate:fix": "biome check . --write --unsafe",
"validate:fix:all": "biome check . --write --unsafe",
"validate:ci": "biome ci ."
},
"lint-staged": {
"*": ["biome check --write --unsafe"]
},
"engines": {
"node": ">=20",
"pnpm": ">=8"
},
"packageManager": "[email protected]",
"devDependencies": {
"@biomejs/biome": "^1.8.0",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@commitlint/types": "^19.0.3",
"husky": "^9.0.11",
"lint-staged": "^15.2.5"
}
}