-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.35 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
73
74
75
76
{
"name": "@meshsdk/react",
"version": "1.9.0-beta.96",
"description": "React component library - https://meshjs.dev/react",
"main": "./dist/index.cjs",
"browser": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"./styles.css": "./dist/index.css",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist/**"
],
"scripts": {
"build:mesh_old": "tsup src/index.ts --format esm,cjs --cjsInterop --dts && tailwindcss -i ./src/styles.css -o ./dist/index.css",
"build:mesh": "tsup && tailwindcss -i ./src/styles.css -o ./dist/index.css",
"dev": "concurrently \"tsup src/index.ts --format esm,cjs --watch --dts\" \"tailwindcss -i ./src/styles.css -o ./dist/index.css --watch\"",
"clean": "rm -rf .turbo && rm -rf dist && rm -rf node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
"pack": "npm pack --pack-destination=./dist",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@cardananium/cardano-peer-connect": "^1.2.19",
"@meshsdk/common": "1.9.0-beta.96",
"@meshsdk/transaction": "1.9.0-beta.96",
"@meshsdk/wallet": "1.9.0-beta.96",
"@meshsdk/web3-sdk": "0.0.50",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"class-variance-authority": "^0.7.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@meshsdk/configs": "*",
"@types/react": "^18.2.61",
"autoprefixer": "^10.4.18",
"concurrently": "^8.0.1",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "latest",
"tsup": "^8.0.2",
"libsodium-wrappers-sumo": "0.7.15"
},
"peerDependencies": {
"react": ">=16.0.0 <20.0.0 || >=16.0.0-rc <20.0.0-rc || >=19.0.0-rc",
"react-dom": ">=16.0.0 <20.0.0 || >=16.0.0-rc <20.0.0-rc || >=19.0.0-rc"
},
"overrides": {
"ip": "npm:@webpod/ip@latest"
},
"prettier": "@meshsdk/configs/prettier",
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"keywords": [
"cardano",
"ada",
"web3",
"blockchain",
"sdk"
]
}