-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.94 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
{
"name": "@interest-protocol/resui",
"version": "0.0.2-alpha",
"description": "Sui React Library to create a complete DApp.",
"src": "src/lib/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"declarationTypes": "types/index.d.ts",
"author": "Marco Pitra",
"private": false,
"sideEffects": false,
"license": "MIT",
"homepage": "https://github.com/interest-protocol/resui",
"repository": "https://github.com/interest-protocol/resui",
"scripts": {
"build": "tsc",
"publish:alpha": "pnpm build && npm publish --tag alpha && package-version-git-tag --push && git push",
"publish:beta": "pnpm build && npm publish --tag beta && package-version-git-tag --push && git push",
"publish:latest": "pnpm build && npm publish && package-version-git-tag --push && git push"
},
"devDependencies": {
"@types/ramda": "^0.30.2",
"@types/react": "^18.3.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"package-version-git-tag": "^3.0.0",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"files": [
"package.json",
"README",
"dist"
],
"packageManager": "[email protected]+sha512.67f5879916a9293e5cf059c23853d571beaf4f753c707f40cb22bed5fb1578c6aad3b6c4107ccb3ba0b35be003eb621a16471ac836c87beb53f9d54bb4612724",
"dependencies": {
"@mysten/dapp-kit": "^0.14.22",
"@mysten/sui": "^1.10.0",
"@mysten/suins": "^0.4.0",
"@tanstack/react-query": "^5.56.2",
"ramda": "^0.30.1",
"react": "^18.3.1",
"swr": "^2.2.5",
"tiny-invariant": "^1.3.3",
"uuid": "^10.0.0",
"zustand": "5.0.0-rc.2"
}
}