@lock-sdk/csrf
Version:
CSRF protection module for Lock security framework
49 lines (48 loc) • 1.13 kB
JSON
{
"name": "@lock-sdk/csrf",
"version": "1.0.0",
"description": "CSRF protection module for Lock security framework",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --external @lock-sdk/sdk-sdk/core",
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
"lint": "eslint src --ext .ts,.tsx",
"test": "vitest"
},
"keywords": [
"security",
"csrf",
"csrf-protection",
"lock"
],
"author": "lock.dev team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@lock-sdk/core": "^1.0.0",
"lru-cache": "^11.1.0",
"redis": "^4.7.0"
},
"peerDependencies": {
"@lock-sdk/core": "^1.0.0"
},
"devDependencies": {
"@lock-sdk/eslint-config": "workspace:*",
"@lock-sdk/typescript-config": "workspace:*",
"@types/node": "^22.13.10"
}
}