-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 911 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
34
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"cli": "pnpm -F cli run cli",
"sdk:gen": "pnpm -F sdk generate && eslint ./packages/sdk --fix --cache",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"test": "vitest --pool=forks",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@smart-converter/sdk": "workspace:*"
},
"devDependencies": {
"@albus-finance/sdk": "../albus/packages/albus-sdk",
"@antfu/eslint-config": "^2.6.3",
"@types/bn.js": "^5.1.0",
"@types/bs58": "^4.0.1",
"eslint": "npm:[email protected]",
"lint-staged": "^15.2.2",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.3.3",
"vitest": "^1.2.2"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}