-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@etherna/sdk-js",
"version": "1.7.1",
"description": "Etherna SDKs for operations on the network",
"author": "Mattia Dalzocchio",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/etherna/etherna-sdk-js.git"
},
"keywords": [
"etherna",
"clients",
"swarm",
"bee",
"index",
"gateway",
"sso",
"schema",
"manifest",
"serializer",
"deserializer"
],
"bugs": {
"url": "https://etherna.atlassian.net/jira/software/c/projects/ESJ/issues"
},
"homepage": "https://github.com/etherna/clients#readme",
"scripts": {
"dev": "node bundle.mjs --watch",
"build": "node bundle.mjs && pnpm tsc -p tsconfig.build.json",
"test": "pnpm vitest",
"test-ui": "pnpm vitest --ui",
"lint": "pnpm eslint --ext .ts --fix .",
"format": "pnpm prettier --write .",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"axios": ">=1.7",
"immer": ">=10.0",
"zustand": ">=4.5"
},
"dependencies": {
"@fairdatasociety/bmt-js": "2.1.0",
"@noble/hashes": "1.4.0",
"@noble/secp256k1": "2.1.0",
"axios": "1.7.2",
"blurhash": "2.0.5",
"cookiejs": "2.1.3",
"crypto-ts": "1.0.2",
"immer": "10.0.4",
"js-sha3": "0.9.3",
"viem": "2.9.16",
"zod": "3.22.4",
"zustand": "4.5.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.2.1",
"@total-typescript/ts-reset": "0.5.1",
"@types/node": "20.12.7",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"prettier": "3.2.5",
"typescript": "5.4.5",
"vite": "5.2.8",
"vitest": "1.5.0"
},
"optionalDependencies": {
"@vitest/ui": "1.5.0",
"chokidar": "3.6.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": []
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@9.12.0+sha512.4abf725084d7bcbafbd728bfc7bee61f2f791f977fd87542b3579dcb23504d170d46337945e4c66485cd12d588a0c0e570ed9c477e7ccdd8507cf05f3f92eaca"
}