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