|
1 | 1 | { |
2 | 2 | "name": "react-object-table", |
3 | | - "version": "0.6.0", |
| 3 | + "version": "0.7.0", |
4 | 4 | "description": "React powered table of objects, designed to be editable and fast.", |
5 | | - "main": "src/index.js", |
| 5 | + "main": "dist/index.js", |
| 6 | + "module": "dist/index.js", |
| 7 | + "exports": { |
| 8 | + ".": { |
| 9 | + "require": "./dist/index.js", |
| 10 | + "import": "./dist/index.js" |
| 11 | + } |
| 12 | + }, |
6 | 13 | "scripts": { |
7 | 14 | "publish-demo": "git branch -D gh-pages; git push origin --delete gh-pages; git checkout -b gh-pages; cd demo-site; yarn; npm run build; cd ..; git add .; git add -f demo-site/dist; git add -f demo-site/node_modules/uptick-demo-site/dist; git commit -m \"Demo site build\"; git push origin gh-pages; git checkout master; git push origin `git subtree split --prefix demo-site gh-pages`:gh-pages --force;", |
8 | 15 | "test": "echo \"Error: no test specified\" && exit 1", |
9 | | - "build-js": "./node_modules/webpack/bin/webpack.js", |
| 16 | + "build-js": "rm -rf dist && node ./esbuild.js", |
10 | 17 | "build-css": "./node_modules/node-sass/bin/node-sass src/object-table.sass dist/react-object-table.css", |
11 | 18 | "build": "npm run build-js; npm run build-css", |
12 | 19 | "prepublish": "npm run build" |
|
29 | 36 | }, |
30 | 37 | "homepage": "https://github.com/uptick/react-object-table#readme", |
31 | 38 | "dependencies": { |
32 | | - "classnames": "^2.2.3", |
33 | | - "clone": "^1.0.2" |
| 39 | + "classnames": "^2.3.1", |
| 40 | + "clone": "^2.1.2" |
34 | 41 | }, |
35 | 42 | "peerDependencies": { |
36 | 43 | "jquery": "^3.x", |
37 | 44 | "react": "15.x - 16.x", |
38 | 45 | "react-dom": "15.x - 16.x" |
39 | 46 | }, |
40 | 47 | "devDependencies": { |
41 | | - "babel-cli": "^6.6.4", |
42 | | - "babel-core": "^6.5.2", |
43 | | - "babel-eslint": "^7.2.3", |
44 | | - "babel-loader": "^6.2.2", |
45 | | - "babel-plugin-add-module-exports": "^0.1.2", |
46 | | - "babel-preset-env": "^1.6.1", |
47 | | - "babel-preset-react": "^6.5.0", |
48 | | - "babel-preset-stage-0": "^6.5.0", |
49 | | - "eslint": "^3.19.0", |
50 | | - "eslint-config-standard": "^10.2.1", |
51 | | - "eslint-config-standard-jsx": "^4.0.1", |
52 | | - "eslint-config-standard-react": "^5.0.0", |
53 | | - "eslint-plugin-babel": "^4.1.1", |
54 | | - "eslint-plugin-import": "^2.3.0", |
55 | | - "eslint-plugin-node": "^4.2.2", |
56 | | - "eslint-plugin-promise": "^3.5.0", |
57 | | - "eslint-plugin-react": "^7.0.1", |
58 | | - "eslint-plugin-standard": "^3.0.1", |
59 | | - "jquery": "^3.1.1", |
60 | | - "node-sass": "^3.4.2", |
61 | | - "react": "^15.4", |
62 | | - "react-dom": "^15.4", |
63 | | - "webpack": "^1.12.13" |
64 | | - }, |
65 | | - "browserDependencies": {} |
| 48 | + "@typescript-eslint/eslint-plugin": "^4.26.0", |
| 49 | + "@typescript-eslint/parser": "^4.26.0", |
| 50 | + "esbuild": "^0.12.5", |
| 51 | + "esbuild-node-externals": "^1.2.0", |
| 52 | + "eslint": "^7.27.0", |
| 53 | + "eslint-config-standard": "*", |
| 54 | + "eslint-config-standard-react": "*", |
| 55 | + "eslint-plugin-import": "*", |
| 56 | + "eslint-plugin-node": "*", |
| 57 | + "eslint-plugin-promise": "*", |
| 58 | + "eslint-plugin-react": "*", |
| 59 | + "eslint-plugin-standard": "*", |
| 60 | + "jquery": "^3.6.0", |
| 61 | + "node-sass": "^6.0.0", |
| 62 | + "react": "^16.13.0", |
| 63 | + "react-dom": "^16.13.0", |
| 64 | + "typescript": "^4.3.2" |
| 65 | + } |
66 | 66 | } |
0 commit comments