UNPKG

mobx-restful-table

Version:

A Pagination Table & Scroll List component suite for CRUD operation, which is based on MobX RESTful & React.

123 lines (122 loc) 3.74 kB
{ "name": "mobx-restful-table", "version": "2.7.1", "license": "LGPL-3.0", "author": "shiy2008@gmail.com", "description": "A Pagination Table & Scroll List component suite for CRUD operation, which is based on MobX RESTful & React.", "keywords": [ "table", "form", "component", "crud", "mobx", "restful", "react" ], "homepage": "https://idea2app.github.io/MobX-RESTful-table/", "repository": { "type": "git", "url": "git+https://github.com/idea2app/MobX-RESTful-table.git" }, "bugs": { "url": "https://github.com/idea2app/MobX-RESTful-table/issues" }, "source": "source/index.ts", "types": "dist/index.d.ts", "module": "dist/esm/index.js", "main": "dist/index.js", "exports": { "types": "./dist/index.d.ts", "import": "./dist/esm/index.js", "require": "./dist/index.js" }, "dependencies": { "@swc/helpers": "^0.5.23", "classnames": "^2.5.1", "lodash": "^4.18.1", "mobx-react-helper": "^0.5.3", "mobx-restful": "^2.1.5", "react-bootstrap": "^2.10.10", "react-bootstrap-editor": "^2.1.4", "regenerator-runtime": "^0.14.1", "web-utility": "^4.7.2" }, "peerDependencies": { "mobx": ">=6.11", "mobx-i18n": ">=0.6", "mobx-react": ">=9", "react": ">=16.8" }, "devDependencies": { "@mlightcad/cad-simple-viewer": "^1.5.9", "@mlightcad/data-model": "^1.12.3", "@octokit/openapi-types": "^28.0.0", "@open-file-viewer/core": "^0.1.33", "@open-file-viewer/react": "^0.1.33", "@parcel/config-default": "~2.16.4", "@parcel/packager-ts": "~2.16.4", "@parcel/transformer-less": "~2.16.4", "@parcel/transformer-typescript-tsc": "~2.16.4", "@parcel/transformer-typescript-types": "~2.16.4", "@types/lodash": "^4.17.25", "@types/node": "^24.13.3", "@types/react": "^19.2.18", "@types/react-dom": "^19.2.4", "buffer": "^6.0.3", "husky": "^9.1.7", "idea-react": "^2.3.0", "koajax": "^3.3.0", "lint-staged": "^17.3.0", "marked": "^18.0.9", "mobx": "^7.0.0", "mobx-github": "^0.7.1", "mobx-i18n": "^0.7.6", "mobx-react": "^10.0.0", "parcel": "~2.16.4", "pdfjs-dist": "^6.2.108", "prettier": "^3.9.6", "prismjs": "^1.30.0", "process": "^0.11.10", "react": "^19.2.8", "react-dom": "^19.2.8", "react-element-to-jsx-string": "^17.0.1", "rimraf": "^6.1.3", "string_decoder": "^1.3.0", "typedoc": "^0.28.20", "typedoc-plugin-mdn-links": "^5.1.1", "typescript": "~5.9.3", "util": "^0.12.5" }, "prettier": { "singleQuote": true, "trailingComma": "all", "arrowParens": "avoid", "tabWidth": 2, "printWidth": 100 }, "lint-staged": { "*.{md,json,yml,ts}": "prettier --write" }, "browserslist": "> 0.5%, last 2 versions, not dead, IE 11", "targets": { "main": { "optimize": true }, "module": { "optimize": true } }, "@parcel/resolver-default": { "packageExports": true }, "scripts": { "prepare": "husky", "preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel --open", "test": "lint-staged", "pack-preview": "cd preview/ && rimraf ../.parcel-cache dist/ && parcel build --public-url=. --dist-dir=../docs/preview/", "pack-dist": "rm -rf dist/ docs/ && parcel build && sed -i 's/require(\"\\.\\/index\\.css\");//' dist/index.js && rimraf dist/index.js.map", "fix-esm": "cd dist/esm/ && rm index.css* && sed -i 's/import\"\\.\\/index\\.css\";//' index.js && rimraf index.js.map", "build": "npm run pack-dist && npm run fix-esm && typedoc source/ && npm run pack-preview", "prepublishOnly": "npm test && npm run build" } }