diff --git a/CHANGELOG.md b/CHANGELOG.md index 6695a43..4a91d30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - yyyy-mm-dd +## [1.1.1] - 2026-April-03 + +### Fixed + +- Fixed package.json configs to guarantee package completion. + ## [1.1.0] - 2026-April-03 ### Added diff --git a/package.json b/package.json index ac4dd52..ade7245 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,19 @@ { "name": "react-agnostic-table", - "version": "1.1.0", + "version": "1.1.1", "description": "React Agnostic Table", + "license": "MIT", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.mjs", + "require": "./dist/index.js" + }, + "./package.json": "./package.json" + }, "scripts": { "prepare": "husky", "lint": "eslint . --ext .js,.ts,.tsx --max-warnings=0", @@ -16,16 +25,28 @@ }, "repository": { "type": "git", - "url": "git@github.com:JooLuiz/react-agnostic-table.git" + "url": "git+https://github.com/JooLuiz/react-agnostic-table.git" + }, + "homepage": "https://jooluiz.github.io/react-agnostic-table/", + "bugs": { + "url": "https://github.com/JooLuiz/react-agnostic-table/issues" }, "author": "João Luiz de Castro (https://github.com/JooLuiz)", "keywords": [ - "Table", - "JavaScript", - "Typescript", - "React", - "Micro Frontend" + "react", + "table", + "data-table", + "typescript", + "pagination", + "search", + "filter", + "csv-export", + "micro-frontend" ], + "peerDependencies": { + "react": ">=18", + "react-dom": ">=18" + }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.2", "@rollup/plugin-node-resolve": "^16.0.0", @@ -47,6 +68,8 @@ "lint-staged": "^16.4.0", "postcss": "^8.5.6", "react": "^19.0.0", + "react-dom": "^19.0.0", + "rollup": "^4.34.6", "rollup-plugin-dts": "^6.1.1", "rollup-plugin-peer-deps-external": "^2.2.4", "rollup-plugin-postcss": "^4.0.2", @@ -55,12 +78,16 @@ "typescript": "^5.7.3" }, "dependencies": { - "js-pretty-icons": "^0.1.2", - "rollup": "^4.34.6" + "js-pretty-icons": "^0.1.2" }, "files": [ - "dist" + "dist", + "README.md", + "LICENSE" ], + "publishConfig": { + "access": "public" + }, "lint-staged": { "*.{ts,tsx}": [ "eslint --max-warnings=0"