76 lines
1.6 KiB
JSON
76 lines
1.6 KiB
JSON
{
|
|
"name": "cookies-next",
|
|
"version": "5.1.0",
|
|
"description": "Set, Get, Remove cookies on both client and server side with Next.js",
|
|
"main": "./lib/index.js",
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./client": "./lib/client/index.js",
|
|
"./server": "./lib/server/index.js"
|
|
},
|
|
"types": "./lib/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"client": [
|
|
"./lib/client/index.d.ts"
|
|
],
|
|
"server": [
|
|
"./lib/server/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"pretty": "npx prettier . --write",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/andreizanik/cookies-next.git"
|
|
},
|
|
"keywords": [
|
|
"js",
|
|
"cookies",
|
|
"cookie",
|
|
"next",
|
|
"next.js",
|
|
"nextjs",
|
|
"destory",
|
|
"parse",
|
|
"create",
|
|
"ssr",
|
|
"auth"
|
|
],
|
|
"author": {
|
|
"name": "Andrei Zanouski",
|
|
"email": "andreizanik@gmail.com"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/andreizanik/cookies-next/issues"
|
|
},
|
|
"homepage": "https://github.com/andreizanik/cookies-next#readme",
|
|
"dependencies": {
|
|
"cookie": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/react-hooks": "^8.0.1",
|
|
"@types/jest": "^29.5.13",
|
|
"@types/node": "^16.10.2",
|
|
"@types/react": "^18.3.12",
|
|
"@types/react-dom": "^18.3.1",
|
|
"jest": "^29.7.0",
|
|
"jest-environment-jsdom": "^29.7.0",
|
|
"next": "^15.0.0",
|
|
"prettier": "^3.0.2",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"ts-jest": "^29.2.5",
|
|
"typescript": "^4.4.3"
|
|
},
|
|
"peerDependencies": {
|
|
"next": ">=15.0.0",
|
|
"react": ">= 16.8.0"
|
|
}
|
|
}
|