@visulima/pagination 3.0.14 → 3.0.16

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/package.json +123 -123
package/CHANGELOG.md CHANGED
@@ -1,3 +1,33 @@
1
+ ## @visulima/pagination [3.0.16](https://github.com/visulima/visulima/compare/@visulima/pagination@3.0.15...@visulima/pagination@3.0.16) (2024-06-06)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * allow node v22 ([890d457](https://github.com/visulima/visulima/commit/890d4570f18428e2463944813c0c638b3f142803))
7
+
8
+
9
+ ### Styles
10
+
11
+ * cs fixes on some package.json files ([12fc0f7](https://github.com/visulima/visulima/commit/12fc0f74e206cef77863b0b89ec41174ca9ff0bd))
12
+
13
+
14
+ ### Miscellaneous Chores
15
+
16
+ * changed semantic-release-npm to pnpm ([b6d100a](https://github.com/visulima/visulima/commit/b6d100a2bf3fd026577be48726a37754947f0973))
17
+ * **deps:** updated dev deps ([d91ac38](https://github.com/visulima/visulima/commit/d91ac389cea85a6c6bdc8de97905252a6c467abc))
18
+ * updated dev dependencies ([a2e0504](https://github.com/visulima/visulima/commit/a2e0504dc239049434c2482756ff15bdbaac9b54))
19
+ * updated dev dependencies ([abd319c](https://github.com/visulima/visulima/commit/abd319c23576aa1dc751ac874e806bddbc977d51))
20
+ * updated dev dependencies ([0767afe](https://github.com/visulima/visulima/commit/0767afe9be83da6698c1343724400171f952599e))
21
+ * updated dev dependencies ([d7791e3](https://github.com/visulima/visulima/commit/d7791e327917e438757636573b1e5549a97bba7b))
22
+ * updated dev dependencies ([6005345](https://github.com/visulima/visulima/commit/60053456717a3889fc77b4fb5b05d50a662475b2))
23
+
24
+ ## @visulima/pagination [3.0.15](https://github.com/visulima/visulima/compare/@visulima/pagination@3.0.14...@visulima/pagination@3.0.15) (2024-04-17)
25
+
26
+
27
+ ### Bug Fixes
28
+
29
+ * **pagination:** update qs to 6.12.1 ([27cd758](https://github.com/visulima/visulima/commit/27cd758e6286ee91a99a3c689c9e101cd2d688cb))
30
+
1
31
  ## @visulima/pagination [3.0.14](https://github.com/visulima/visulima/compare/@visulima/pagination@3.0.13...@visulima/pagination@3.0.14) (2024-03-27)
2
32
 
3
33
 
package/package.json CHANGED
@@ -1,127 +1,127 @@
1
1
  {
2
- "name": "@visulima/pagination",
3
- "version": "3.0.14",
4
- "description": "Simple Pagination for Node.",
5
- "keywords": [
6
- "anolilab",
7
- "pagination",
8
- "paginator",
9
- "offset"
10
- ],
11
- "homepage": "https://www.visulima.com/docs/package/pagination",
12
- "repository": {
13
- "type": "git",
14
- "url": "https://github.com/visulima/visulima.git",
15
- "directory": "packages/pagination"
2
+ "name": "@visulima/pagination",
3
+ "version": "3.0.16",
4
+ "description": "Simple Pagination for Node.",
5
+ "keywords": [
6
+ "anolilab",
7
+ "pagination",
8
+ "paginator",
9
+ "offset"
10
+ ],
11
+ "homepage": "https://www.visulima.com/docs/package/pagination",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/visulima/visulima.git",
15
+ "directory": "packages/pagination"
16
+ },
17
+ "funding": [
18
+ {
19
+ "type": "github",
20
+ "url": "https://github.com/sponsors/prisis"
16
21
  },
17
- "funding": [
18
- {
19
- "type": "github",
20
- "url": "https://github.com/sponsors/prisis"
21
- },
22
- {
23
- "type": "consulting",
24
- "url": "https://anolilab.com/support"
25
- }
26
- ],
27
- "license": "MIT",
28
- "author": {
29
- "name": "Daniel Bannert",
30
- "email": "d.bannert@anolilab.de"
31
- },
32
- "sideEffects": false,
33
- "exports": {
34
- ".": {
35
- "require": {
36
- "types": "./dist/index.d.ts",
37
- "default": "./dist/index.js"
38
- },
39
- "import": {
40
- "types": "./dist/index.d.mts",
41
- "default": "./dist/index.mjs"
42
- }
43
- },
44
- "./package.json": "./package.json"
45
- },
46
- "main": "dist/index.js",
47
- "module": "dist/index.mjs",
48
- "source": "src/index.ts",
49
- "types": "dist/index.d.ts",
50
- "files": [
51
- "dist/**",
52
- "README.md",
53
- "CHANGELOG.md",
54
- "LICENSE.md"
55
- ],
56
- "scripts": {
57
- "build": "cross-env NODE_ENV=development tsup",
58
- "build:prod": "cross-env NODE_ENV=production tsup",
59
- "clean": "rimraf node_modules dist .eslintcache",
60
- "dev": "pnpm run build --watch",
61
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
62
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
63
- "lint:packagejson": "publint --strict",
64
- "lint:prettier": "prettier --config=.prettierrc.js --check .",
65
- "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
66
- "lint:types": "tsc --noEmit",
67
- "test": "vitest run",
68
- "test:coverage": "vitest run --coverage",
69
- "test:ui": "vitest --ui --coverage.enabled=true",
70
- "test:watch": "vitest"
71
- },
72
- "dependencies": {
73
- "qs": "^6.12.0"
74
- },
75
- "devDependencies": {
76
- "@anolilab/eslint-config": "^15.0.3",
77
- "@anolilab/prettier-config": "^5.0.14",
78
- "@anolilab/semantic-release-preset": "^8.0.3",
79
- "@babel/core": "^7.24.3",
80
- "@rushstack/eslint-plugin-security": "^0.8.1",
81
- "@types/micromatch": "^4.0.6",
82
- "@types/node": "18.18.14",
83
- "@types/qs": "^6.9.14",
84
- "@vitest/coverage-v8": "^1.4.0",
85
- "@vitest/ui": "^1.4.0",
86
- "cross-env": "^7.0.3",
87
- "eslint": "^8.57.0",
88
- "eslint-plugin-deprecation": "^2.0.0",
89
- "eslint-plugin-etc": "^2.0.3",
90
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
91
- "eslint-plugin-mdx": "^3.1.5",
92
- "eslint-plugin-vitest": "^0.3.26",
93
- "eslint-plugin-vitest-globals": "^1.5.0",
94
- "openapi-types": "^12.1.3",
95
- "prettier": "^3.2.5",
96
- "rimraf": "^5.0.5",
97
- "semantic-release": "^23.0.5",
98
- "sort-package-json": "^2.8.0",
99
- "tsup": "^8.0.2",
100
- "typescript": "^5.4.3",
101
- "vitest": "^1.4.0"
102
- },
103
- "engines": {
104
- "node": ">=18.* <=21.*"
105
- },
106
- "os": [
107
- "darwin",
108
- "linux",
109
- "win32"
110
- ],
111
- "publishConfig": {
112
- "access": "public",
113
- "provenance": true
22
+ {
23
+ "type": "consulting",
24
+ "url": "https://anolilab.com/support"
25
+ }
26
+ ],
27
+ "license": "MIT",
28
+ "author": {
29
+ "name": "Daniel Bannert",
30
+ "email": "d.bannert@anolilab.de"
31
+ },
32
+ "sideEffects": false,
33
+ "exports": {
34
+ ".": {
35
+ "require": {
36
+ "types": "./dist/index.d.ts",
37
+ "default": "./dist/index.js"
38
+ },
39
+ "import": {
40
+ "types": "./dist/index.d.mts",
41
+ "default": "./dist/index.mjs"
42
+ }
114
43
  },
115
- "anolilab": {
116
- "eslint-config": {
117
- "plugin": {
118
- "tsdoc": false
119
- },
120
- "warn_on_unsupported_typescript_version": false,
121
- "info_on_disabling_jsx_react_rule": false,
122
- "info_on_disabling_prettier_conflict_rule": false,
123
- "info_on_disabling_jsonc_sort_keys_rule": false,
124
- "info_on_disabling_etc_no_deprecated": false
125
- }
44
+ "./package.json": "./package.json"
45
+ },
46
+ "main": "dist/index.js",
47
+ "module": "dist/index.mjs",
48
+ "source": "src/index.ts",
49
+ "types": "dist/index.d.ts",
50
+ "files": [
51
+ "dist/**",
52
+ "README.md",
53
+ "CHANGELOG.md",
54
+ "LICENSE.md"
55
+ ],
56
+ "dependencies": {
57
+ "qs": "^6.12.1"
58
+ },
59
+ "devDependencies": {
60
+ "@anolilab/eslint-config": "^15.0.3",
61
+ "@anolilab/prettier-config": "^5.0.14",
62
+ "@anolilab/semantic-release-pnpm": "^1.1.0",
63
+ "@anolilab/semantic-release-preset": "^8.1.0",
64
+ "@babel/core": "^7.24.6",
65
+ "@rushstack/eslint-plugin-security": "^0.8.1",
66
+ "@types/micromatch": "^4.0.7",
67
+ "@types/node": "18.18.14",
68
+ "@types/qs": "^6.9.15",
69
+ "@vitest/coverage-v8": "^1.6.0",
70
+ "@vitest/ui": "^1.6.0",
71
+ "cross-env": "^7.0.3",
72
+ "eslint": "^8.57.0",
73
+ "eslint-plugin-deprecation": "^3.0.0",
74
+ "eslint-plugin-etc": "^2.0.3",
75
+ "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
76
+ "eslint-plugin-mdx": "^3.1.5",
77
+ "eslint-plugin-vitest": "^0.4.1",
78
+ "eslint-plugin-vitest-globals": "^1.5.0",
79
+ "openapi-types": "^12.1.3",
80
+ "prettier": "^3.3.0",
81
+ "rimraf": "^5.0.7",
82
+ "semantic-release": "23.1.1",
83
+ "tsup": "^8.1.0",
84
+ "typescript": "^5.4.5",
85
+ "vitest": "^1.6.0"
86
+ },
87
+ "engines": {
88
+ "node": ">=18.* <=22.*"
89
+ },
90
+ "os": [
91
+ "darwin",
92
+ "linux",
93
+ "win32"
94
+ ],
95
+ "publishConfig": {
96
+ "access": "public",
97
+ "provenance": true
98
+ },
99
+ "anolilab": {
100
+ "eslint-config": {
101
+ "plugin": {
102
+ "tsdoc": false
103
+ },
104
+ "warn_on_unsupported_typescript_version": false,
105
+ "info_on_disabling_jsx_react_rule": false,
106
+ "info_on_disabling_prettier_conflict_rule": false,
107
+ "info_on_disabling_jsonc_sort_keys_rule": false,
108
+ "info_on_disabling_etc_no_deprecated": false
126
109
  }
127
- }
110
+ },
111
+ "scripts": {
112
+ "build": "cross-env NODE_ENV=development tsup",
113
+ "build:prod": "cross-env NODE_ENV=production tsup",
114
+ "clean": "rimraf node_modules dist .eslintcache",
115
+ "dev": "pnpm run build --watch",
116
+ "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
117
+ "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
118
+ "lint:package-json": "publint --strict",
119
+ "lint:prettier": "prettier --config=.prettierrc.js --check .",
120
+ "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
121
+ "lint:types": "tsc --noEmit",
122
+ "test": "vitest run",
123
+ "test:coverage": "vitest run --coverage",
124
+ "test:ui": "vitest --ui --coverage.enabled=true",
125
+ "test:watch": "vitest"
126
+ }
127
+ }