-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 3.31 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
{
"name": "@lost-coder/panvex-ui",
"version": "0.1.1",
"type": "module",
"license": "MIT",
"description": "Panvex UI Kit — operational control panel components for MTProto proxy management",
"repository": {
"type": "git",
"url": "https://github.com/lost-coder/panvex-ui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"sideEffects": [
"**/*.css"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./pages": {
"types": "./dist/pages/index.d.ts",
"import": "./dist/pages/index.js",
"require": "./dist/pages/index.cjs"
},
"./styles.css": "./dist/styles.css"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc -p tsconfig.build.json && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest run",
"prepare": "npm run build",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"size": "size-limit",
"prepublishOnly": "npm run build"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "210 kB"
},
{
"path": "dist/styles.css",
"limit": "10 kB"
}
],
"peerDependencies": {
"framer-motion": ">=11",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@radix-ui/react-collapsible": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-toggle": "^1.1.1",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-virtual": "^3.10.9",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": ">=11",
"lucide-react": "^1.7.0",
"motion": "^12.38.0",
"qrcode.react": "^4.2.0",
"react-modal-sheet": "^5.6.0",
"recharts": "^3.8.1",
"tailwind-merge": "^2.6.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@size-limit/file": "^12.0.1",
"@storybook/addon-a11y": "^10.3.4",
"@storybook/react-vite": "^10.3.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@tailwindcss/vite": "^4.1.16",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"jsdom": "^29.0.1",
"prettier": "^3.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"size-limit": "^12.0.1",
"storybook": "^10.3.0",
"tailwindcss": "^4.1.16",
"typescript": "^5.7.3",
"typescript-eslint": "^8.58.0",
"vite": "^6.1.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^4.1.2"
}
}