-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.86 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@azuro-org/sdk",
"version": "7.3.1",
"description": "One-stop solution for building betting dApps on the Azuro Protocol.",
"author": "Azuro",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": "./dist/index.js"
},
"sideEffects": true,
"engines": {
"node": ">=22.12.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Azuro-protocol/sdk.git"
},
"homepage": "https://github.com/Azuro-protocol/sdk#readme",
"bugs": {
"url": "https://github.com/Azuro-protocol/sdk/issues"
},
"keywords": [
"azuro",
"azuro-protocol",
"sdk",
"react",
"dapps"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"prepublishOnly": "npm run build",
"------------------ Lint --------------------------------------------------------------------------------": "",
"lint-fix": "eslint ./src --fix",
"lint-ts": "tsc --noEmit"
},
"peerDependencies": {
"@azuro-org/dictionaries": "^3.0.28",
"@azuro-org/sdk-social-aa-connector": "^1.1.8 || ^2",
"graphql": "^16.11.0",
"react": "^19",
"viem": "^2.37.4",
"wagmi": "^2.16.9 || ^3"
},
"peerDependenciesMeta": {
"@azuro-org/sdk-social-aa-connector": {
"optional": true
}
},
"devDependencies": {
"@azuro-org/sdk-social-aa-connector": "^2.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/react": "^19.1.5",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"rimraf": "^6.1.3",
"rollup": "^4.59.0",
"rollup-plugin-preserve-directives": "^0.4.0",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3"
},
"dependencies": {
"@azuro-org/toolkit": "^6.2.0"
}
}