tabulify 1.0.0 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1) hide show
  1. package/package.json +25 -18
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "tabulify",
3
- "version": "1.0.0",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
+ "description": "A lightweight and customizable React table component.",
5
6
  "main": "dist/index.js",
7
+ "module": "dist/index.esm.js",
8
+ "types": "dist/types/index.d.ts",
6
9
  "scripts": {
7
- "main": "dist/index.js",
8
- "module": "dist/index.esm.js",
9
- "types": "dist/types/index.d.ts",
10
10
  "build": "rollup -c",
11
11
  "prepublishOnly": "npm run build",
12
12
  "test": "jest",
@@ -15,13 +15,26 @@
15
15
  "lint": "eslint . --quiet",
16
16
  "lint:fix": "eslint . --fix"
17
17
  },
18
- "keywords": [],
19
- "author": "",
20
- "license": "ISC",
21
- "description": "",
18
+ "keywords": [
19
+ "react",
20
+ "table",
21
+ "component",
22
+ "tabulify",
23
+ "typescript"
24
+ ],
25
+ "author": "Armin Basirian",
26
+ "license": "MIT",
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "https://github.com/arbasirian/tabulify.git"
30
+ },
31
+ "bugs": {
32
+ "url": "https://github.com/arbasirian/tabulify/issues"
33
+ },
34
+ "homepage": "https://github.com/arbasirian/tabulify#readme",
22
35
  "peerDependencies": {
23
- "react": "^18.3.1",
24
- "react-dom": "^18.3.1"
36
+ "react": "^18.0.0",
37
+ "react-dom": "^18.0.0"
25
38
  },
26
39
  "devDependencies": {
27
40
  "@eslint/js": "^9.15.0",
@@ -30,17 +43,15 @@
30
43
  "@rollup/plugin-node-resolve": "^15.3.0",
31
44
  "@rollup/plugin-typescript": "^12.1.1",
32
45
  "@testing-library/jest-dom": "^6.6.3",
46
+ "@testing-library/react": "^16.0.1",
33
47
  "@types/jest": "^29.5.14",
34
- "@types/mocha": "^10.0.9",
35
48
  "@types/node": "^22.9.0",
36
- "@types/testing-library__jest-dom": "^5.14.9",
37
49
  "@typescript-eslint/eslint-plugin": "^8.15.0",
38
50
  "@typescript-eslint/parser": "^8.15.0",
39
51
  "eslint": "^9.15.0",
40
52
  "eslint-config-prettier": "^9.1.0",
41
53
  "eslint-plugin-prettier": "^5.2.1",
42
54
  "eslint-plugin-react": "^7.37.2",
43
- "globals": "^15.12.0",
44
55
  "jest": "^29.7.0",
45
56
  "jest-environment-jsdom": "^29.7.0",
46
57
  "prettier": "^3.3.3",
@@ -48,10 +59,6 @@
48
59
  "rollup-plugin-peer-deps-external": "^2.2.4",
49
60
  "ts-jest": "^29.2.5",
50
61
  "ts-node": "^10.9.2",
51
- "typescript": "^5.6.3",
52
- "typescript-eslint": "^8.15.0"
53
- },
54
- "dependencies": {
55
- "@testing-library/react": "^16.0.1"
62
+ "typescript": "^5.6.3"
56
63
  }
57
64
  }