-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.34 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
85
86
87
88
{
"name": "@unicrowio/sdk",
"version": "1.2.0-beta.13",
"author": "Unicrow <hello@unicrow.io>",
"license": "MIT",
"description": "Unicrow SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"prepare": "husky",
"dev": "tsup --watch",
"build": "yarn clean && tsup",
"lint": "rome check src/ --verbose",
"lint:fix": "rome check src/ --apply",
"format": "rome format src/ --write",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"test": "jest --clearCache && jest",
"clean": "rm -rf ./lib"
},
"devDependencies": {
"@jest/types": "^29.6.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.5.3",
"@types/luxon": "^3.3.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.1",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"husky": "^9.1.6",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"rome": "^12.1.3",
"ts-jest": "^29.1.1",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/networks": "^5.7.1",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/solidity": "^5.7.0",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"@mui/material": "^5.14.3",
"@mui/styles": "^5.14.3",
"@unicrowio/ethers-types": "^1.2.3",
"ethers": "^6.13.2",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"jss": "^10.10.0",
"jss-preset-default": "^10.10.0",
"luxon": "^3.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.11",
"swr": "^2.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unicrowio/sdk.git"
},
"keywords": [
"javascript",
"typescript",
"web3",
"crypto",
"payment",
"sdk"
],
"bugs": {
"url": "https://github.com/unicrowio/sdk/issues"
},
"homepage": "https://docs.unicrow.io",
"typedoc": {
"entryPoint": "./src/index.ts",
"displayName": "Unicrow SDK",
"readmeFile": "./README.md",
"tsconfig": "./tsconfig.json"
}
}