chore: update package version and dependencies
- Bump version from 0.0.39 to 0.0.40 in package.json - Update @kevisual/query from ^0.0.31 to ^0.0.32 - Update @types/node from ^24.10.2 to ^25.0.3 - Update rollup from ^4.53.3 to ^4.53.5 - Update zod from ^4.1.13 to ^4.2.1 - Update send from ^1.2.0 to ^1.2.1 refactor: improve error handling in CustomError class - Refactor isError method to use type guard for better type checking fix: change cookie import path in server.ts - Update cookie import from 'cookie' to './cookie.ts' feat: implement cookie parsing and stringifying functionality - Add cookie.ts with functions for parsing and stringifying cookies - Implement cookie name, value, domain, path, max-age, and other attributes handling
This commit is contained in:
14
package.json
14
package.json
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"$schema": "https://json.schemastore.org/package",
|
||||
"name": "@kevisual/router",
|
||||
"version": "0.0.39",
|
||||
"version": "0.0.40",
|
||||
"description": "",
|
||||
"type": "module",
|
||||
"main": "./dist/router.js",
|
||||
@@ -22,20 +22,18 @@
|
||||
"license": "MIT",
|
||||
"devDependencies": {
|
||||
"@kevisual/local-proxy": "^0.0.8",
|
||||
"@kevisual/query": "^0.0.31",
|
||||
"@kevisual/query": "^0.0.32",
|
||||
"@rollup/plugin-alias": "^6.0.0",
|
||||
"@rollup/plugin-commonjs": "29.0.0",
|
||||
"@rollup/plugin-node-resolve": "^16.0.3",
|
||||
"@rollup/plugin-typescript": "^12.3.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/node": "^24.10.2",
|
||||
"@types/node": "^25.0.3",
|
||||
"@types/send": "^1.2.1",
|
||||
"@types/ws": "^8.18.1",
|
||||
"@types/xml2js": "^0.4.14",
|
||||
"cookie": "^1.1.1",
|
||||
"lodash-es": "^4.17.21",
|
||||
"nanoid": "^5.1.6",
|
||||
"rollup": "^4.53.3",
|
||||
"rollup": "^4.53.5",
|
||||
"rollup-plugin-dts": "^6.3.0",
|
||||
"ts-loader": "^9.5.4",
|
||||
"ts-node": "^10.9.2",
|
||||
@@ -43,7 +41,7 @@
|
||||
"typescript": "^5.9.3",
|
||||
"ws": "npm:@kevisual/ws",
|
||||
"xml2js": "^0.6.2",
|
||||
"zod": "^4.1.13"
|
||||
"zod": "^4.2.1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -52,7 +50,7 @@
|
||||
"dependencies": {
|
||||
"path-to-regexp": "^8.3.0",
|
||||
"selfsigned": "^5.2.0",
|
||||
"send": "^1.2.0"
|
||||
"send": "^1.2.1"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
Reference in New Issue
Block a user