antd-table-editable-af
Version:
A editable table based on antd table
121 lines (120 loc) • 3.33 kB
JSON
{
"name": "antd-table-editable-af",
"version": "1.2.5",
"description": "A editable table based on antd table",
"keywords": [
"react",
"antd",
"editable",
"table"
],
"homepage": "https://github.com/linxianxi/antd-table-editable",
"bugs": {
"url": "https://github.com/linxianxi/antd-table-editable/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/linxianxi/antd-table-editable.git"
},
"license": "MIT",
"sideEffects": false,
"main": "lib/index.js",
"module": "es/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"es",
"dist"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"ci": "npm run lint && npm run type-check && npm run doctor && npm run build",
"clean": "rm -rf es lib dist coverage .dumi/tmp .eslintcache .doc",
"dev": "dumi dev",
"doctor": "father doctor",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && npm run setup",
"prepublishOnly": "npm run doctor && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"setup": "dumi setup",
"start": "dumi dev",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"clsx": "^2.1.0",
"lodash": "^4.17.21",
"rc-util": "^5.39.1"
},
"devDependencies": {
"@ant-design/icons": "^5.3.4",
"@commitlint/cli": "^17",
"@commitlint/config-conventional": "^17",
"@dnd-kit/core": "^5.0.1",
"@dnd-kit/sortable": "^6.0.0",
"@dnd-kit/utilities": "^3.1.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/jest-dom": "^5",
"@testing-library/react": "^14",
"@types/lodash": "^4.17.0",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-resizable": "^3.0.7",
"@types/react-window": "^1.8.5",
"@types/testing-library__jest-dom": "^5",
"@umijs/lint": "^4",
"@vitest/coverage-v8": "latest",
"ahooks": "^3.7.10",
"antd": "5.17.3",
"commitlint": "^17",
"concurrently": "^7",
"cross-env": "^7",
"dayjs": "^1.11.10",
"dumi": "^2",
"dumi-theme-antd-style": "^0.29.7",
"eslint": "^8",
"father": "^4",
"husky": "^8",
"jsdom": "^22",
"lint-staged": "^13",
"prettier": "^2",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"react": "^18",
"react-dom": "^18",
"react-selectable-box": "^1.9.0",
"react-selectable-fast": "^3.4.0",
"react-virtuoso": "^4.5.0",
"semantic-release": "^21",
"stylelint": "^15",
"typescript": "^5",
"vitest": "latest"
},
"peerDependencies": {
"antd": ">=5.0.0",
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}