-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
149 lines (149 loc) · 4.52 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@yf-ui/react-window-table",
"version": "0.0.11",
"publishConfig": {
"access": "public"
},
"description": "基于 react-window 库编写的一个超灵活的表格",
"author": "WilliamYang <[email protected]> (https://github.com/yangfei4913438)",
"private": false,
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/yangfei4913438/react-window-table.git"
},
"bugs": {
"url": "https://github.com/yangfei4913438/react-window-table/issues"
},
"homepage": "https://yangfei4913438.github.io/react-window-table",
"unpkg": "./dist/index.umd.js",
"main": "./dist/index.umd.js",
"module": "./dist/index.es.js",
"types": "./dist/lib/index.d.ts",
"license": "MIT",
"keywords": [
"table",
"react-window",
"react-window-table"
],
"files": [
"dist",
"!dist/**/*.map",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"dev": "vite",
"ui": "npx shadcn-ui@latest add",
"clean": "rimraf dist",
"lib": "npm run clean && rollup --config rollup.config.mjs",
"prepublishOnly": "npm run lib",
"release": "npm publish",
"format": "prettier . --cache --write",
"lint": "eslint lib --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install",
"commit": "git add . && cz-customizable",
"changelog": "conventional-changelog -p gitmoji-config -i CHANGELOG.md -s",
"build": "rimraf github-static && tsc && vite build",
"deploy": "npm run build && gh-pages -d github-static --branch docs"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.cjs"
}
},
"browserslist": [
"last 2 version",
"> 1%",
"not dead"
],
"dependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/modifiers": "^6.0.1",
"@dnd-kit/sortable": "^7.0.2",
"@dnd-kit/utilities": "^3.2.1",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"ahooks": "^3.7.7",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.1.0",
"lodash-es": "^4.17.21",
"lucide-react": "^0.303.0",
"react-window": "^1.8.9",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"use-resize-observer": "^9.1.0"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/lodash-es": "^4.17.7",
"@types/mockjs": "^1.0.7",
"@types/node": "^20.3.1",
"@types/react": "^18.2.12",
"@types/react-dom": "^18.2.5",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"commitlint-config-cz": "^0.13.3",
"commitlint-config-git-commit-emoji": "^1.0.0",
"conventional-changelog-cli": "^2.2.2",
"conventional-changelog-gitmoji-config": "^1.4.7",
"cssnano": "^6.0.1",
"cz-customizable": "^7.0.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-tailwindcss": "^3.12.1",
"gh-pages": "^5.0.0",
"husky": "^8.0.0",
"mockjs": "^1.1.0",
"postcss": "^8.4.32",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-import": "^15.1.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^8.4.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.25.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.62.1",
"tailwindcss": "^3.3.2",
"tslib": "^2.5.3",
"typescript": "5.0.4",
"vite": "^4.3.9",
"vite-plugin-eslint": "^1.8.1"
},
"directories": {
"lib": "lib"
}
}