-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.4 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
47
48
{
"devDependencies": {
"@eslint/js": "9.7.0",
"@stylistic/eslint-plugin-ts": "2.3.0",
"@types/eslint__js": "8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.6",
"@wagmi/cli": "2.1.10",
"eslint": "8.57.0",
"jest": "^29.7.0",
"microbundle": "0.15.1",
"mocha": "10.4.0",
"prettier": "3.3.2",
"ts-jest": "^29.2.2",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"typedoc": "^0.26.5",
"typedoc-github-theme": "^0.1.1",
"typedoc-gitlab-wiki-theme": "^2.0.1",
"typedoc-material-theme": "^1.1.0",
"typedoc-plugin-markdown": "^4.2.1",
"typescript": "5.5.3",
"typescript-eslint": "7.16.0"
},
"dependencies": {
"@wagmi/core": "2.12.2",
"axios": "1.7.5",
"lodash": "^4.17.21",
"viem": "2.18.4"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "rm -rf ./dist && tsc && tsc --declaration --emitDeclarationOnly",
"localPub": "rm -rf ./klaster-sdk-0.1.5.tgz && rm -rf ./dist && npm run build && npm pack",
"lint": "eslint .",
"test": "jest --coverage",
"make-docs": "typedoc --plugin typedoc-plugin-markdown --outputFileStrategy modules ./src"
},
"main": "dist/index.js",
"name": "klaster-sdk",
"version": "0.5.12",
"description": "An SDK for interacting with the Klaster Protocol",
"author": {
"email": "[email protected]",
"name": "Mislav Javor",
"url": "https://x.com/ox_shaman"
}
}