-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.3 KB
/
Copy pathpackage.json
File metadata and controls
122 lines (122 loc) · 3.3 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "sorokit-ui",
"version": "1.0.0",
"type": "module",
"description": "React components for Stellar/Soroban development",
"main": "dist/sorokit-ui.cjs.js",
"module": "dist/sorokit-ui.es.js",
"types": "dist/components/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"private": false,
"author": "sorokit contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Just-Bamford/sorokit-ui"
},
"bugs": {
"url": "https://github.com/Just-Bamford/sorokit-ui/issues"
},
"homepage": "https://github.com/Just-Bamford/sorokit-ui#readme",
"exports": {
".": {
"types": "./dist/components/index.d.ts",
"import": "./dist/sorokit-ui.es.js",
"require": "./dist/sorokit-ui.cjs.js"
},
"./styles": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build --config vite.lib.config.ts",
"build:app": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"test:exports": "tsc -p tsconfig.test-exports.json",
"lint": "eslint . --ext .ts,.tsx",
"type-check": "tsc --noEmit",
"size": "npm run build && size-limit"
},
"dependencies": {
"@hugeicons/core-free-icons": "^4.2.2",
"@hugeicons/react": "^1.1.9",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.2.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.14.0",
"qrcode": "1.5.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"sorokit-core": "^0.1.0",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@size-limit/preset-small-lib": "^12.1.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.12.2",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-simple-import-sort": "^13.0.0",
"globals": "^17.5.0",
"jsdom": "^29.1.1",
"size-limit": "^12.1.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.10",
"vite-plugin-dts": "^5.0.3",
"vitest": "^3.0.5"
},
"size-limit": [
{
"name": "ES module (gzip)",
"path": "dist/sorokit-ui.es.js",
"limit": "65 kB",
"gzip": true
},
{
"name": "CommonJS (gzip)",
"path": "dist/sorokit-ui.cjs.js",
"limit": "65 kB",
"gzip": true
}
],
"peerDependencies": {
"@creit.tech/stellar-wallets-kit": ">=1.0.0",
"sorokit-core": ">=0.1.0",
"tailwindcss": "^3.0.0"
},
"peerDependenciesMeta": {
"@creit.tech/stellar-wallets-kit": {
"optional": false
},
"sorokit-core": {
"optional": false
},
"tailwindcss": {
"optional": true
}
}
}