-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.62 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
{
"name": "@rtcamp/frappe-ui-react",
"version": "1.2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist-types/index.d.ts",
"description": "Package for Frappe UI Components created in react.",
"author": {
"name": "rtCamp"
},
"files": [
"dist/",
"dist-types/",
"package.json",
"README.md"
],
"license": "MIT",
"private": false,
"sideEffects": false,
"readme": "https://github.com/rtCamp/frappe-ui-react/blob/main/packages/frappe-ui-react/README.md",
"homepage": "https://rtcamp.github.io/frappe-ui-react",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist-types/index.d.ts"
},
"./icons": {
"import": "./dist/icons/index.js",
"require": "./dist/icons/index.js",
"types": "./dist-types/icons/index.d.ts"
},
"./theme": "./dist/theme.css",
"./theme-v3": "./dist/themeV3.css",
"./tailwind/preset": "./dist/utils/tailwind.config.cjs"
},
"scripts": {
"build": "tsc -b && pnpm copy-assets",
"copy-assets": "node scripts/copy-assets.js",
"publish:local": "pnpm publish --registry http://localhost:4873",
"unpublish:local": "pnpm unpublish --registry http://localhost:4873 --force",
"publish:remote": "pnpm publish"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@floating-ui/react": "^0.27.16",
"@headlessui/react": "^2.2.9",
"@popperjs/core": "^2.11.8",
"@tailwindcss/typography": "^0.5.19",
"@tiptap/extension-blockquote": "^3.17.1",
"@tiptap/extension-code-block-lowlight": "^3.17.1",
"@tiptap/extension-highlight": "^3.17.1",
"@tiptap/extension-horizontal-rule": "^3.17.1",
"@tiptap/extension-list": "^3.17.1",
"@tiptap/extension-placeholder": "^3.17.1",
"@tiptap/extension-strike": "^3.17.1",
"@tiptap/extension-table": "^3.17.1",
"@tiptap/extension-task-list": "^3.17.1",
"@tiptap/extension-text-align": "^3.17.1",
"@tiptap/extension-text-style": "^3.17.1",
"@tiptap/pm": "^3.17.1",
"@tiptap/react": "^3.17.1",
"@tiptap/starter-kit": "^3.17.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"dompurify": "^3.4.12",
"echarts": "^6.1.0",
"feather-icons": "^4.29.2",
"lowlight": "^3.3.0",
"lucide-react": "^0.539.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-grid-layout": "^1.5.3",
"react-resizable": "^3.1.3",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@types/feather-icons": "^4.29.4",
"@types/node": "^24.10.9",
"@types/react-grid-layout": "^1.3.6"
}
}