-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"private": true,
"name": "@xlabs-libs/wallet-aggregator-sdk",
"repository": "https://github.com/xlabs/wallet-aggregator-sdk",
"license": "Apache-2.0",
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"type": "module",
"sideEffects": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"typescript": "^5.3.2"
},
"scripts": {
"build": "tsc --build --verbose tsconfig.all.json",
"clean": "pnpm -r run clean",
"lint": "npx eslint .",
"prepare": "husky install",
"prettier": "prettier --write --ignore-unknown **/*"
},
"pnpm": {
"overrides": {
"@xpla/xpla.js": "0.2.3"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {},
"packageManager": "[email protected]+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}