-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.34 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.34 KB
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
49
50
51
52
53
{
"name": "golem-base-sdk",
"version": "0.1.16",
"description": "",
"homepage": "https://golem-base.github.io/typescript-sdk/",
"repository": {
"type": "git",
"url": "git+https://github.com/Golem-Base/typescript-sdk"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"./dist"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"keywords": [],
"author": "",
"license": "GPL-3.0-only",
"packageManager": "pnpm@10.5.2",
"dependencies": {
"@types/node": "^22.15.32",
"ethers": "^6.15.0",
"tslog": "^4.9.3",
"viem": "^2.31.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@types/chai": "^5.2.2",
"@types/mocha": "^10.0.10",
"chai": "^5.2.0",
"glob": "^11.0.3",
"mocha": "^11.6.0",
"rollup": "^4.43.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-mocha": "^11.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.28.5",
"xdg-portable": "^10.6.0"
},
"scripts": {
"clean": "rm -rf ./dist",
"build": "rm -rf ./dist && rollup -c && ./node_modules/typedoc/bin/typedoc ./src/index.ts",
"test": "ts-mocha --recursive --extension .spec.ts ./test"
}
}