1 | {
|
2 | "name": "rc-table",
|
3 | "version": "7.47.1",
|
4 | "description": "table ui component for react",
|
5 | "engines": {
|
6 | "node": ">=8.x"
|
7 | },
|
8 | "keywords": [
|
9 | "react",
|
10 | "react-table",
|
11 | "table",
|
12 | "component",
|
13 | "ui"
|
14 | ],
|
15 | "files": [
|
16 | "assets/*.css",
|
17 | "es",
|
18 | "lib"
|
19 | ],
|
20 | "main": "./lib/index",
|
21 | "module": "./es/index",
|
22 | "types": "./lib/index.d.ts",
|
23 | "homepage": "http://github.com/react-component/table",
|
24 | "maintainers": [
|
25 | "yiminghe@gmail.com",
|
26 | "afc163@gmail.com"
|
27 | ],
|
28 | "repository": {
|
29 | "type": "git",
|
30 | "url": "git@github.com:react-component/table.git"
|
31 | },
|
32 | "bugs": {
|
33 | "url": "http://github.com/react-component/table/issues"
|
34 | },
|
35 | "license": "MIT",
|
36 | "scripts": {
|
37 | "start": "dumi dev",
|
38 | "docs:build": "dumi build",
|
39 | "docs:deploy": "gh-pages -d .doc",
|
40 | "compile": "father build && lessc assets/index.less assets/index.css",
|
41 | "deploy": "npm run docs:build && npm run docs:deploy",
|
42 | "prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
|
43 | "test": "vitest",
|
44 | "coverage": "vitest run --coverage",
|
45 | "prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
|
46 | "lint": "eslint src/ --ext .tsx,.ts",
|
47 | "tsc": "tsc -p tsconfig.json --noEmit",
|
48 | "now-build": "npm run docs:build",
|
49 | "prepare": "husky install"
|
50 | },
|
51 | "peerDependencies": {
|
52 | "react": ">=16.9.0",
|
53 | "react-dom": ">=16.9.0"
|
54 | },
|
55 | "dependencies": {
|
56 | "@babel/runtime": "^7.10.1",
|
57 | "@rc-component/context": "^1.4.0",
|
58 | "classnames": "^2.2.5",
|
59 | "rc-resize-observer": "^1.1.0",
|
60 | "rc-util": "^5.41.0",
|
61 | "rc-virtual-list": "^3.14.2"
|
62 | },
|
63 | "devDependencies": {
|
64 | "@rc-component/father-plugin": "^1.0.2",
|
65 | "@testing-library/jest-dom": "^6.4.0",
|
66 | "@testing-library/react": "^12.1.5",
|
67 | "@types/enzyme": "^3.10.5",
|
68 | "@types/jest": "^29.5.0",
|
69 | "@types/react": "^18.0.28",
|
70 | "@types/react-dom": "^18.0.5",
|
71 | "@types/responselike": "^1.0.0",
|
72 | "@types/styled-components": "^5.1.32",
|
73 | "@umijs/fabric": "^4.0.1",
|
74 | "@vitest/coverage-v8": "^1.2.2",
|
75 | "cross-env": "^7.0.0",
|
76 | "dumi": "^2.1.3",
|
77 | "enzyme": "^3.1.0",
|
78 | "enzyme-adapter-react-16": "^1.0.1",
|
79 | "enzyme-to-json": "^3.1.2",
|
80 | "eslint": "^8.54.0",
|
81 | "eslint-plugin-jest": "^28.2.0",
|
82 | "eslint-plugin-unicorn": "^53.0.0",
|
83 | "father": "^4.0.0",
|
84 | "gh-pages": "^6.1.0",
|
85 | "glob": "^7.1.6",
|
86 | "husky": "^9.0.11",
|
87 | "immutability-helper": "^3.0.0",
|
88 | "jsdom": "^23.0.0",
|
89 | "less": "^4.1.3",
|
90 | "lint-staged": "^15.1.0",
|
91 | "np": "^10.0.1",
|
92 | "prettier": "^3.1.0",
|
93 | "rc-animate": "^3.0.0",
|
94 | "rc-dropdown": "~4.0.1",
|
95 | "rc-menu": "~9.13.0",
|
96 | "rc-tooltip": "^6.2.0",
|
97 | "react": "^16.0.0",
|
98 | "react-dnd": "^2.5.4",
|
99 | "react-dnd-html5-backend": "^2.5.4",
|
100 | "react-dom": "^16.0.0",
|
101 | "react-resizable": "^3.0.5",
|
102 | "react-virtualized": "^9.12.0",
|
103 | "react-window": "^1.8.5",
|
104 | "regenerator-runtime": "^0.14.0",
|
105 | "styled-components": "^6.1.1",
|
106 | "typescript": "~5.4.3",
|
107 | "vitest": "^1.2.2"
|
108 | },
|
109 | "lint-staged": {
|
110 | "**/*.{js,jsx,tsx,ts,md,json}": [
|
111 | "prettier --write"
|
112 | ]
|
113 | }
|
114 | }
|