-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.38 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
{
"name": "@rmrk-team/rmrk-hooks",
"description": "React hooks for working with NFTs built on RMRK standards",
"bugs": "https://github.com/rmrk-team/rmrk-js/issues",
"homepage": "https://github.com/rmrk-team/rmrk-js",
"version": "0.3.2",
"private": false,
"access": "public",
"repository": {
"type": "git",
"url": "https://github.com/rmrk-team/rmrk-js.git",
"directory": "packages/rmrk-hooks"
},
"scripts": {
"build": "pnpm run clean && pnpm run build:esm+types",
"build:esm+types": "tsc -b tsconfig.build.json --declaration --declarationMap",
"dev": "pnpm run build:esm+types --watch",
"clean": "rm -rf dist tsconfig.tsbuildinfo actions chains connectors query",
"test:build": "publint --strict",
"typecheck": "tsc --noEmit"
},
"files": [
"dist/**",
"!dist/**/*.tsbuildinfo",
"src/**/*.ts",
"!src/**/*.test.ts",
"!src/**/*.test-d.ts"
],
"type": "module",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"typings": "./dist/types/index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"dependencies": {
"@pixi/react": "^7.1.2",
"@rmrk-team/ipfs-utils": "workspace:*",
"@rmrk-team/rmrk-2d-renderer": "workspace:*",
"@rmrk-team/rmrk-evm-utils": "workspace:*",
"@rmrk-team/types": "workspace:*",
"isomorphic-dompurify": "^2.14.0",
"lucide-react": "^0.303.0",
"pixi.js": "^7.4.2",
"ramda": "^0.29.1",
"use-image": "^1.1.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@tanstack/react-query": "^5.51.24",
"@types/node": "18.16.9",
"@types/ramda": "^0.29.10",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"abitype": "^1.0.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^5.5.4",
"viem": "^2.19.7",
"vite": "^4.4.9",
"wagmi": "^2.12.5"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.51.24",
"abitype": ">=1.0.6",
"viem": ">=2.19.7",
"wagmi": ">=2.12.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": ">=5.4.2"
},
"license": "MIT",
"authors": ["yurinondual.eth <yuripetusko@gmail.com>"]
}