-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.87 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
{
"name": "@rmrk-team/nft-renderer",
"description": "React NFT renderer for multi layered composable NFTs built on RMRK standards",
"bugs": "https://github.com/rmrk-team/rmrk-js/issues",
"version": "0.3.2",
"private": false,
"access": "public",
"repository": {
"type": "git",
"url": "https://github.com/rmrk-team/rmrk-js.git",
"directory": "packages/nft-renderer"
},
"scripts": {
"build": "pnpm run clean && pnpm run build:esm+types && pnpm run build:misc && pnpm run build:panda",
"build:esm+types": "pnpm build:postcss && tsc -b tsconfig.build.json --declaration --declarationMap",
"build:misc": "pnpm copy:styled-system && tsc-alias -p tsconfig.build.json",
"build:postcss": "postcss -o dist/esm/styles/index.css src/styles/index.css",
"build:panda": "panda cssgen --outfile dist/styles.css",
"copy:styled-system": "copyfiles --up 1 ./src/styled-system/**/*.js ./src/styled-system/*.js dist/esm",
"prepare": "panda codegen",
"dev": "pnpm --workspace-concurrency=1 run build:esm+types --watch && pnpm run build:misc --watch && pnpm run build:panda --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/**/*.tsx",
"styled-system/**/*.mjs",
"dist/styles.css",
"!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",
"./dist/styles.css": "./dist/styles.css"
},
"dependencies": {
"@rainbow-me/rainbowkit": "^2.1.2",
"@rmrk-team/ipfs-utils": "workspace:*",
"@rmrk-team/rmrk-2d-renderer": "workspace:*",
"@rmrk-team/rmrk-evm-utils": "workspace:*",
"@rmrk-team/rmrk-hooks": "workspace:*"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@pandacss/dev": "^0.45.1",
"@types/node": "18.16.9",
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
"@vitejs/plugin-react": "^4.1.0",
"copyfiles": "^2.4.1",
"postcss": "^8.4.41",
"postcss-cli": "^11.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tsc-alias": "^1.8.8",
"typescript": "^5.5.4",
"viem": "^2.19.7",
"vite": "^4.4.9",
"wagmi": "^2.12.5"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": ">=5.4.2",
"@tanstack/react-query": ">=5.51.24",
"viem": ">=2.19.7",
"wagmi": ">=2.12.5"
},
"license": "MIT",
"authors": ["yurinondual.eth <[email protected]>"]
}