-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 1.95 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
{
"name": "@treasure-dev/tdk-react",
"version": "3.10.0",
"description": "Treasure Development Kit for React-based projects",
"keywords": [
"treasure",
"tdk",
"bridgeworld",
"arbitrum"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TreasureProject/tdk-js.git",
"directory": "packages/react"
},
"bugs": {
"url": "https://github.com/TreasureProject/tdk-js/issues",
"email": "[email protected]"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"files": [
"./dist"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest run",
"dev": "tsup --watch",
"build": "tsup",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@radix-ui/react-dialog": "catalog:",
"@radix-ui/react-visually-hidden": "catalog:",
"@treasure-dev/tdk-core": "workspace:*",
"@treasure-dev/launcher": "workspace:*",
"clsx": "catalog:",
"i18next": "catalog:",
"i18next-browser-languagedetector": "catalog:",
"input-otp": "catalog:",
"react-i18next": "catalog:",
"tailwind-merge": "catalog:"
},
"devDependencies": {
"@storybook/addon-essentials": "catalog:",
"@storybook/react": "catalog:",
"@storybook/react-vite": "catalog:",
"@treasure-dev/tailwind-config": "workspace:*",
"@types/react": "catalog:",
"autoprefixer": "catalog:",
"postcss": "catalog:",
"storybook": "catalog:",
"tailwindcss": "catalog:",
"tailwindcss-animate": "catalog:",
"tsup": "catalog:",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"peerDependencies": {
"react": "catalog:",
"thirdweb": "catalog:"
},
"engines": {
"node": ">=14.0.0"
}
}