-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
59 lines (59 loc) · 1.63 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
{
"name": "@azuro-org/sdk",
"version": "5.3.7",
"author": "Azuro",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"sideEffects": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Azuro-protocol/sdk.git"
},
"homepage": "https://github.com/Azuro-protocol/sdk#readme",
"scripts": {
"build": "rimraf dist && rollup -c",
"prepublishOnly": "npm run build",
"------------------ Lint --------------------------------------------------------------------------------": "",
"lint": "next lint && tsc --noEmit",
"lint-fix": "eslint ./src -c .eslintrc --fix --ext js,ts,tsx",
"lint-ts": "tsc --noEmit"
},
"peerDependencies": {
"@apollo/client": "^3.11.10",
"@azuro-org/dictionaries": "^3.0.20",
"@azuro-org/sdk-social-aa-connector": "^1.0.0",
"graphql": "^16.9.0",
"react": "^18.2.0",
"viem": "^2.21.44",
"wagmi": "^2.12.30"
},
"peerDependenciesMeta": {
"@azuro-org/sdk-social-aa-connector": {
"optional": true
}
},
"devDependencies": {
"@azuro-org/sdk-social-aa-connector": "^1.0.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/react": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint": "^8.56.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"rimraf": "^5.0.10",
"rollup": "^4.24.4",
"rollup-plugin-preserve-directives": "^0.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@azuro-org/toolkit": "^4.4.1"
}
}