jattac.libs.web.responsive-table 0.8.4 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,117 +1,117 @@
1
- {
2
- "name": "jattac.libs.web.responsive-table",
3
- "version": "0.8.4",
4
- "description": "A fully responsive, customizable, and lightweight React table component with a modern, mobile-first design and a powerful plugin system.",
5
- "author": {
6
- "name": "Nyingi Maina",
7
- "email": "nyingi@jattac.com"
8
- },
9
- "license": "MIT",
10
- "main": "./dist/index.js",
11
- "module": "./dist/index.es.js",
12
- "types": "./dist/index.d.ts",
13
- "exports": {
14
- ".": {
15
- "types": "./dist/index.d.ts",
16
- "import": "./dist/index.es.js",
17
- "require": "./dist/index.js"
18
- },
19
- "./dist/*.css": "./dist/*.css"
20
- },
21
- "files": [
22
- "dist",
23
- "docs",
24
- "README.md",
25
- "LICENSE"
26
- ],
27
- "sideEffects": [
28
- "**/*.css",
29
- "**/*.scss"
30
- ],
31
- "repository": {
32
- "type": "git",
33
- "url": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_git/Jattac.Libs.Web.ResponsiveTable"
34
- },
35
- "bugs": {
36
- "url": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_workitems"
37
- },
38
- "homepage": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_git/Jattac.Libs.Web.ResponsiveTable#readme",
39
- "engines": {
40
- "node": ">=18.0.0"
41
- },
42
- "scripts": {
43
- "dev": "rollup -c -w",
44
- "build": "rollup -c",
45
- "lint": "eslint \"src/**/*.{ts,tsx}\"",
46
- "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
47
- "format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
48
- "test": "jest",
49
- "test:coverage": "jest --coverage",
50
- "size": "size-limit",
51
- "type-check": "tsc --noEmit",
52
- "prepare": "npm run build",
53
- "prepublishOnly": "npm run type-check && npm run lint && npm test"
54
- },
55
- "keywords": [
56
- "react",
57
- "typescript",
58
- "table",
59
- "datagrid",
60
- "responsive",
61
- "mobile-first",
62
- "infinite-scroll",
63
- "plugin-system"
64
- ],
65
- "peerDependencies": {
66
- "react": ">=18.2.0",
67
- "react-dom": ">=18.2.0"
68
- },
69
- "devDependencies": {
70
- "@rollup/plugin-commonjs": "^25.0.7",
71
- "@rollup/plugin-node-resolve": "^15.2.3",
72
- "@rollup/plugin-terser": "^0.4.4",
73
- "@rollup/plugin-typescript": "^11.1.5",
74
- "@size-limit/preset-small-lib": "^10.0.1",
75
- "@testing-library/jest-dom": "^6.9.1",
76
- "@testing-library/react": "^14.0.0",
77
- "@types/jest": "^30.0.0",
78
- "@types/react": "^18.2.33",
79
- "@types/react-dom": "^18.2.14",
80
- "@types/react-window": "^1.8.8",
81
- "@typescript-eslint/eslint-plugin": "^6.9.1",
82
- "@typescript-eslint/parser": "^6.9.1",
83
- "eslint": "^8.52.0",
84
- "eslint-config-prettier": "^9.0.0",
85
- "eslint-plugin-prettier": "^5.0.1",
86
- "eslint-plugin-react": "^7.33.2",
87
- "identity-obj-proxy": "^3.0.0",
88
- "jest": "^30.2.0",
89
- "jest-environment-jsdom": "^30.2.0",
90
- "postcss": "^8.4.31",
91
- "prettier": "^3.0.3",
92
- "react": "^18.2.0",
93
- "react-dom": "^18.2.0",
94
- "rollup": "^4.2.0",
95
- "rollup-plugin-copy": "^3.5.0",
96
- "rollup-plugin-delete": "^2.0.0",
97
- "rollup-plugin-generate-package-json": "^3.2.0",
98
- "rollup-plugin-peer-deps-external": "^2.2.4",
99
- "rollup-plugin-postcss": "^4.0.2",
100
- "size-limit": "^10.0.1",
101
- "ts-jest": "^29.4.6",
102
- "typescript": "^5.2.2"
103
- },
104
- "dependencies": {
105
- "tslib": "^2.6.2"
106
- },
107
- "jest": {
108
- "preset": "ts-jest",
109
- "testEnvironment": "jsdom",
110
- "moduleNameMapper": {
111
- "\\.(css|less|sass|scss)$": "identity-obj-proxy"
112
- },
113
- "setupFilesAfterEnv": [
114
- "<rootDir>/jest-setup.ts"
115
- ]
116
- }
117
- }
1
+ {
2
+ "name": "jattac.libs.web.responsive-table",
3
+ "version": "0.9.0",
4
+ "description": "A fully responsive, customizable, and lightweight React table component with a modern, mobile-first design and a powerful plugin system.",
5
+ "author": {
6
+ "name": "Nyingi Maina",
7
+ "email": "nyingi@jattac.com"
8
+ },
9
+ "license": "MIT",
10
+ "main": "./dist/index.js",
11
+ "module": "./dist/index.es.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ ".": {
15
+ "types": "./dist/index.d.ts",
16
+ "import": "./dist/index.es.js",
17
+ "require": "./dist/index.js"
18
+ },
19
+ "./dist/*.css": "./dist/*.css"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "docs",
24
+ "README.md",
25
+ "LICENSE"
26
+ ],
27
+ "sideEffects": [
28
+ "**/*.css",
29
+ "**/*.scss"
30
+ ],
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_git/Jattac.Libs.Web.ResponsiveTable"
34
+ },
35
+ "bugs": {
36
+ "url": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_workitems"
37
+ },
38
+ "homepage": "https://nyingi.visualstudio.com/DefaultCollection/Jattac.Libs.Web.ResponsiveTable/_git/Jattac.Libs.Web.ResponsiveTable#readme",
39
+ "engines": {
40
+ "node": ">=18.0.0"
41
+ },
42
+ "scripts": {
43
+ "dev": "rollup -c -w",
44
+ "build": "rollup -c",
45
+ "lint": "eslint \"src/**/*.{ts,tsx}\"",
46
+ "lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
47
+ "format": "prettier --write \"src/**/*.{ts,tsx,css,md}\"",
48
+ "test": "jest",
49
+ "test:coverage": "jest --coverage",
50
+ "size": "size-limit",
51
+ "type-check": "tsc --noEmit",
52
+ "prepare": "npm run build",
53
+ "prepublishOnly": "npm run type-check && npm run lint && npm test"
54
+ },
55
+ "keywords": [
56
+ "react",
57
+ "typescript",
58
+ "table",
59
+ "datagrid",
60
+ "responsive",
61
+ "mobile-first",
62
+ "infinite-scroll",
63
+ "plugin-system"
64
+ ],
65
+ "peerDependencies": {
66
+ "react": ">=18.2.0",
67
+ "react-dom": ">=18.2.0"
68
+ },
69
+ "devDependencies": {
70
+ "@rollup/plugin-commonjs": "^25.0.7",
71
+ "@rollup/plugin-node-resolve": "^15.2.3",
72
+ "@rollup/plugin-terser": "^0.4.4",
73
+ "@rollup/plugin-typescript": "^11.1.5",
74
+ "@size-limit/preset-small-lib": "^10.0.1",
75
+ "@testing-library/jest-dom": "^6.9.1",
76
+ "@testing-library/react": "^14.0.0",
77
+ "@types/jest": "^30.0.0",
78
+ "@types/react": "^18.2.33",
79
+ "@types/react-dom": "^18.2.14",
80
+ "@types/react-window": "^1.8.8",
81
+ "@typescript-eslint/eslint-plugin": "^6.9.1",
82
+ "@typescript-eslint/parser": "^6.9.1",
83
+ "eslint": "^8.52.0",
84
+ "eslint-config-prettier": "^9.0.0",
85
+ "eslint-plugin-prettier": "^5.0.1",
86
+ "eslint-plugin-react": "^7.33.2",
87
+ "identity-obj-proxy": "^3.0.0",
88
+ "jest": "^30.2.0",
89
+ "jest-environment-jsdom": "^30.2.0",
90
+ "postcss": "^8.4.31",
91
+ "prettier": "^3.0.3",
92
+ "react": "^18.2.0",
93
+ "react-dom": "^18.2.0",
94
+ "rollup": "^4.2.0",
95
+ "rollup-plugin-copy": "^3.5.0",
96
+ "rollup-plugin-delete": "^2.0.0",
97
+ "rollup-plugin-generate-package-json": "^3.2.0",
98
+ "rollup-plugin-peer-deps-external": "^2.2.4",
99
+ "rollup-plugin-postcss": "^4.0.2",
100
+ "size-limit": "^10.0.1",
101
+ "ts-jest": "^29.4.6",
102
+ "typescript": "^5.2.2"
103
+ },
104
+ "dependencies": {
105
+ "tslib": "^2.6.2"
106
+ },
107
+ "jest": {
108
+ "preset": "ts-jest",
109
+ "testEnvironment": "jsdom",
110
+ "moduleNameMapper": {
111
+ "\\.(css|less|sass|scss)$": "identity-obj-proxy"
112
+ },
113
+ "setupFilesAfterEnv": [
114
+ "<rootDir>/jest-setup.ts"
115
+ ]
116
+ }
117
+ }