-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.7 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "rc-ui",
"type": "module",
"version": "0.0.1",
"description": "A collection of React components",
"packageManager": "pnpm@9.11.0",
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "pnpm --filter \"./packages/**\" build",
"build:dev": "pnpm --filter \"./packages/**\" dev",
"docs": "pnpm -C docs run docs:dev",
"playground": "pnpm -C playground run dev",
"playground:build": "pnpm run build && pnpm -C playground run build",
"prepublishOnly": "pnpm build",
"type-check": "tsc",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --quiet",
"release": "bumpp",
"publish:ci": "pnpm -r publish --access public --no-git-checks"
},
"dependencies": {
"clsx": "^2.1.1",
"lodash-es": "^4.17.21",
"lucide-react": "^0.427.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@eslint-react/eslint-plugin": "^1.14.3",
"@total-typescript/ts-reset": "^0.5.1",
"@types/deep-equal": "^1.0.4",
"@types/file-saver": "^2.0.7",
"@types/katex": "^0.16.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.7.4",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"bumpp": "^9.6.1",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"esno": "^4.8.0",
"execa": "^9.4.0",
"git-scm-hooks": "^0.0.11",
"globby": "^14.0.2",
"md5": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.4",
"taze": "^0.17.2",
"typescript": "^5.6.2",
"verify-commit-msg": "^0.0.14",
"vite": "^5.4.8",
"vite-plugin-dts": "^4.2.3"
},
"browserslist": [
">0.3%",
"not ie 11",
"not dead",
"not op_mini all"
],
"git-hooks": {
"pre-commit": "npm run lint:fix",
"commit-msg": "npm run verify-commit"
},
"peerDependencies": {
"react": ">= 17.0.0",
"react-dom": ">= 17.0.0"
},
"keywords": [
"react",
"tiptap",
"editor",
"wysiwyg",
"rich-text",
"rc-headless-ui",
"tiptap-editor",
"tiptap-react",
"tiptap-react-editor",
"tiptap-react-wysiwyg",
"tiptap-react-rich-text",
"tiptap-react-rc-editor",
"tiptap-react-rc-wysiwyg",
"tiptap-react-rc-rich-text"
],
"author": "hunghg255 <giahunghust@gmail.com>",
"homepage": "https://github.com/hunghg255/rc-ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/hunghg255/rc-ui.git",
"directory": "packages/transformers"
},
"bugs": "https://github.com/hunghg255/rc-ui/issues"
}