@elysiajs/cookie
Advanced tools
Comparing version 0.5.0 to 0.5.1
{ | ||
"name": "@elysiajs/cookie", | ||
"version": "0.5.0", | ||
"version": "0.5.1", | ||
"description": "Plugin for Elysia that add supports for get/set cookie", | ||
@@ -12,5 +12,5 @@ "author": { | ||
"exports": { | ||
"node": "./dist/cjs/index.js", | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/index.js", | ||
"node": "./dist/index.js", | ||
"default": "./dist/index.js" | ||
@@ -32,3 +32,4 @@ }, | ||
"dev": "bun run --hot example/index.ts", | ||
"test": "bun wiptest", | ||
"test": "bun wiptest && npm run test:node", | ||
"test:node": "npm install --prefix ./test/node/cjs/ && npm install --prefix ./test/node/esm/ && node ./test/node/cjs/index.js && node ./test/node/esm/index.js", | ||
"build": "rimraf dist && tsc --project tsconfig.esm.json && tsc --project tsconfig.cjs.json", | ||
@@ -44,3 +45,3 @@ "release": "npm run build && npm run test && npm publish --access public" | ||
"peerDependencies": { | ||
"elysia": ">= 0.5.0" | ||
"elysia": ">= 0.5.12" | ||
}, | ||
@@ -50,3 +51,3 @@ "devDependencies": { | ||
"bun-types": "^0.5.8", | ||
"elysia": "0.5.0", | ||
"elysia": "0.5.12", | ||
"eslint": "^8.40.0", | ||
@@ -53,0 +54,0 @@ "rimraf": "4.3", |
21569