@visulima/connect 3.0.9 → 3.0.11

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 +27 -0
  2. package/package.json +140 -140
package/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## @visulima/connect [3.0.11](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.10...@visulima/connect@3.0.11) (2024-06-05)
2
+
3
+
4
+ ### Styles
5
+
6
+ * cs fixes on some package.json files ([12fc0f7](https://github.com/visulima/visulima/commit/12fc0f74e206cef77863b0b89ec41174ca9ff0bd))
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * changed semantic-release-npm to pnpm ([b6d100a](https://github.com/visulima/visulima/commit/b6d100a2bf3fd026577be48726a37754947f0973))
12
+ * updated dev dependencies ([a2e0504](https://github.com/visulima/visulima/commit/a2e0504dc239049434c2482756ff15bdbaac9b54))
13
+
14
+
15
+
16
+ ### Dependencies
17
+
18
+ * **@visulima/nextra-theme-docs:** upgraded to 4.0.25
19
+
20
+ ## @visulima/connect [3.0.10](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.9...@visulima/connect@3.0.10) (2024-05-15)
21
+
22
+
23
+
24
+ ### Dependencies
25
+
26
+ * **@visulima/nextra-theme-docs:** upgraded to 4.0.24
27
+
1
28
  ## @visulima/connect [3.0.9](https://github.com/visulima/visulima/compare/@visulima/connect@3.0.8...@visulima/connect@3.0.9) (2024-04-27)
2
29
 
3
30
 
package/package.json CHANGED
@@ -1,144 +1,144 @@
1
1
  {
2
- "name": "@visulima/connect",
3
- "version": "3.0.9",
4
- "description": "The minimal router and middleware layer for Next.js, Micro, Vercel, or Node.js http/http2 with support for zod validation.",
5
- "keywords": [
6
- "javascript",
7
- "nextjs",
8
- "middleware",
9
- "router",
10
- "connect",
11
- "vercel",
12
- "node",
13
- "http",
14
- "http2",
15
- "zod"
16
- ],
17
- "homepage": "https://www.visulima.com/docs/package/connect",
18
- "bugs": {
19
- "url": "https://github.com/visulima/visulima/issues"
2
+ "name": "@visulima/connect",
3
+ "version": "3.0.11",
4
+ "description": "The minimal router and middleware layer for Next.js, Micro, Vercel, or Node.js http/http2 with support for zod validation.",
5
+ "keywords": [
6
+ "javascript",
7
+ "nextjs",
8
+ "middleware",
9
+ "router",
10
+ "connect",
11
+ "vercel",
12
+ "node",
13
+ "http",
14
+ "http2",
15
+ "zod"
16
+ ],
17
+ "homepage": "https://www.visulima.com/docs/package/connect",
18
+ "bugs": {
19
+ "url": "https://github.com/visulima/visulima/issues"
20
+ },
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/visulima/visulima.git",
24
+ "directory": "packages/connect"
25
+ },
26
+ "funding": [
27
+ {
28
+ "type": "github",
29
+ "url": "https://github.com/sponsors/prisis"
20
30
  },
21
- "repository": {
22
- "type": "git",
23
- "url": "https://github.com/visulima/visulima.git",
24
- "directory": "packages/connect"
25
- },
26
- "funding": [
27
- {
28
- "type": "github",
29
- "url": "https://github.com/sponsors/prisis"
30
- },
31
- {
32
- "type": "consulting",
33
- "url": "https://anolilab.com/support"
34
- }
35
- ],
36
- "license": "MIT",
37
- "author": {
38
- "name": "Daniel Bannert",
39
- "email": "d.bannert@anolilab.de"
40
- },
41
- "sideEffects": false,
42
- "exports": {
43
- ".": {
44
- "require": {
45
- "types": "./dist/index.d.ts",
46
- "default": "./dist/index.js"
47
- },
48
- "import": {
49
- "types": "./dist/index.d.mts",
50
- "default": "./dist/index.mjs"
51
- }
52
- },
53
- "./package.json": "./package.json"
54
- },
55
- "main": "dist/index.js",
56
- "module": "dist/index.mjs",
57
- "source": "src/index.ts",
58
- "types": "dist/index.d.ts",
59
- "files": [
60
- "dist/**",
61
- "README.md",
62
- "CHANGELOG.md",
63
- "LICENSE.md"
64
- ],
65
- "scripts": {
66
- "build": "cross-env NODE_ENV=development tsup",
67
- "build:prod": "cross-env NODE_ENV=production tsup",
68
- "clean": "rimraf node_modules dist .eslintcache",
69
- "dev": "pnpm run build --watch",
70
- "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
71
- "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
72
- "lint:packagejson": "publint --strict",
73
- "lint:prettier": "prettier --config=.prettierrc.js --check .",
74
- "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
75
- "lint:types": "tsc --noEmit",
76
- "test": "vitest run",
77
- "test:coverage": "vitest run --coverage",
78
- "test:ui": "vitest --ui --coverage.enabled=true",
79
- "test:watch": "vitest"
80
- },
81
- "dependencies": {
82
- "http-errors": "^2.0.0",
83
- "regexparam": "^3.0.0"
84
- },
85
- "devDependencies": {
86
- "@anolilab/eslint-config": "^15.0.3",
87
- "@anolilab/prettier-config": "^5.0.14",
88
- "@anolilab/semantic-release-preset": "^8.0.3",
89
- "@babel/core": "^7.24.4",
90
- "@rushstack/eslint-plugin-security": "^0.8.1",
91
- "@types/http-errors": "^2.0.4",
92
- "@types/node": "18.18.14",
93
- "@visulima/nextra-theme-docs": "4.0.23",
94
- "@vitest/coverage-v8": "^1.5.2",
95
- "@vitest/ui": "^1.5.2",
96
- "cross-env": "^7.0.3",
97
- "eslint": "^8.57.0",
98
- "eslint-plugin-deprecation": "^2.0.0",
99
- "eslint-plugin-etc": "^2.0.3",
100
- "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
101
- "eslint-plugin-mdx": "^3.1.5",
102
- "eslint-plugin-vitest": "^0.4.1",
103
- "eslint-plugin-vitest-globals": "^1.5.0",
104
- "eslint-plugin-zod": "^1.4.0",
105
- "express": "^4.19.2",
106
- "fastify": "^4.26.2",
107
- "isomorphic-fetch": "^3.0.0",
108
- "prettier": "^3.2.5",
109
- "rimraf": "^5.0.5",
110
- "semantic-release": "^23.0.8",
111
- "sort-package-json": "^2.10.0",
112
- "tsup": "^8.0.2",
113
- "typescript": "^5.4.5",
114
- "vitest": "^1.5.2",
115
- "zod": "^3.23.4"
116
- },
117
- "peerDependencies": {
118
- "zod": "^3.22.4"
119
- },
120
- "engines": {
121
- "node": ">=18.* <=21.*"
122
- },
123
- "os": [
124
- "darwin",
125
- "linux",
126
- "win32"
127
- ],
128
- "publishConfig": {
129
- "access": "public",
130
- "provenance": true
31
+ {
32
+ "type": "consulting",
33
+ "url": "https://anolilab.com/support"
34
+ }
35
+ ],
36
+ "license": "MIT",
37
+ "author": {
38
+ "name": "Daniel Bannert",
39
+ "email": "d.bannert@anolilab.de"
40
+ },
41
+ "sideEffects": false,
42
+ "exports": {
43
+ ".": {
44
+ "require": {
45
+ "types": "./dist/index.d.ts",
46
+ "default": "./dist/index.js"
47
+ },
48
+ "import": {
49
+ "types": "./dist/index.d.mts",
50
+ "default": "./dist/index.mjs"
51
+ }
131
52
  },
132
- "anolilab": {
133
- "eslint-config": {
134
- "plugin": {
135
- "tsdoc": false
136
- },
137
- "warn_on_unsupported_typescript_version": false,
138
- "info_on_disabling_jsx_react_rule": false,
139
- "info_on_disabling_prettier_conflict_rule": false,
140
- "info_on_disabling_jsonc_sort_keys_rule": false,
141
- "info_on_disabling_etc_no_deprecated": false
142
- }
53
+ "./package.json": "./package.json"
54
+ },
55
+ "main": "dist/index.js",
56
+ "module": "dist/index.mjs",
57
+ "source": "src/index.ts",
58
+ "types": "dist/index.d.ts",
59
+ "files": [
60
+ "dist/**",
61
+ "README.md",
62
+ "CHANGELOG.md",
63
+ "LICENSE.md"
64
+ ],
65
+ "dependencies": {
66
+ "http-errors": "^2.0.0",
67
+ "regexparam": "^3.0.0"
68
+ },
69
+ "devDependencies": {
70
+ "@anolilab/eslint-config": "^15.0.3",
71
+ "@anolilab/prettier-config": "^5.0.14",
72
+ "@anolilab/semantic-release-pnpm": "^1.1.0",
73
+ "@anolilab/semantic-release-preset": "^8.1.0",
74
+ "@babel/core": "^7.24.6",
75
+ "@rushstack/eslint-plugin-security": "^0.8.1",
76
+ "@types/http-errors": "^2.0.4",
77
+ "@types/node": "18.18.14",
78
+ "@visulima/nextra-theme-docs": "4.0.25",
79
+ "@vitest/coverage-v8": "^1.6.0",
80
+ "@vitest/ui": "^1.6.0",
81
+ "cross-env": "^7.0.3",
82
+ "eslint": "^8.57.0",
83
+ "eslint-plugin-deprecation": "^3.0.0",
84
+ "eslint-plugin-etc": "^2.0.3",
85
+ "eslint-plugin-import": "npm:eslint-plugin-i@^2.29.1",
86
+ "eslint-plugin-mdx": "^3.1.5",
87
+ "eslint-plugin-vitest": "^0.4.1",
88
+ "eslint-plugin-vitest-globals": "^1.5.0",
89
+ "eslint-plugin-zod": "^1.4.0",
90
+ "express": "^4.19.2",
91
+ "fastify": "^4.27.0",
92
+ "isomorphic-fetch": "^3.0.0",
93
+ "prettier": "^3.3.0",
94
+ "rimraf": "^5.0.7",
95
+ "semantic-release": "23.1.1",
96
+ "tsup": "^8.1.0",
97
+ "typescript": "^5.4.5",
98
+ "vitest": "^1.6.0",
99
+ "zod": "^3.23.8"
100
+ },
101
+ "peerDependencies": {
102
+ "zod": "^3.22.4"
103
+ },
104
+ "engines": {
105
+ "node": ">=18.* <=21.*"
106
+ },
107
+ "os": [
108
+ "darwin",
109
+ "linux",
110
+ "win32"
111
+ ],
112
+ "publishConfig": {
113
+ "access": "public",
114
+ "provenance": true
115
+ },
116
+ "anolilab": {
117
+ "eslint-config": {
118
+ "plugin": {
119
+ "tsdoc": false
120
+ },
121
+ "warn_on_unsupported_typescript_version": false,
122
+ "info_on_disabling_jsx_react_rule": false,
123
+ "info_on_disabling_prettier_conflict_rule": false,
124
+ "info_on_disabling_jsonc_sort_keys_rule": false,
125
+ "info_on_disabling_etc_no_deprecated": false
143
126
  }
144
- }
127
+ },
128
+ "scripts": {
129
+ "build": "cross-env NODE_ENV=development tsup",
130
+ "build:prod": "cross-env NODE_ENV=production tsup",
131
+ "clean": "rimraf node_modules dist .eslintcache",
132
+ "dev": "pnpm run build --watch",
133
+ "lint:eslint": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js",
134
+ "lint:eslint:fix": "eslint . --ext js,cjs,mjs,jsx,ts,tsx,json,yaml,yml,md,mdx --max-warnings=0 --config .eslintrc.js --fix",
135
+ "lint:package-json": "publint --strict",
136
+ "lint:prettier": "prettier --config=.prettierrc.js --check .",
137
+ "lint:prettier:fix": "prettier --config=.prettierrc.js --write .",
138
+ "lint:types": "tsc --noEmit",
139
+ "test": "vitest run",
140
+ "test:coverage": "vitest run --coverage",
141
+ "test:ui": "vitest --ui --coverage.enabled=true",
142
+ "test:watch": "vitest"
143
+ }
144
+ }