← back to Dw Nextjs Admin Login
package.json
25 lines
{
"name": "@dw/nextjs-admin-login",
"version": "0.3.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist", "src"],
"exports": {
".": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "node --import tsx --test test/*.test.ts",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"peerDependencies": { "next": "^15.0.0 || ^16.0.0" },
"devDependencies": {
"@types/node": "^22",
"tsx": "^4",
"typescript": "^5"
}
}