UNPKG

@csrf-armor/core

Version:

Framework-agnostic CSRF protection core functionality

55 lines 1.26 kB
{ "name": "@csrf-armor/core", "version": "1.2.3", "description": "Framework-agnostic CSRF protection core functionality", "type": "module", "main": "./dist/index.mjs", "types": "./dist/index.d.mts", "exports": { ".": "./dist/index.mjs", "./package.json": "./package.json" }, "files": [ "dist", "README.md" ], "keywords": [ "csrf", "security", "protection", "framework-agnostic", "token", "validation" ], "author": "Muneeb Samuels", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/muneebs/csrf-armor", "directory": "packages/core" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "bugs": { "url": "https://github.com/muneebs/csrf-armor/issues" }, "homepage": "https://github.com/muneebs/csrf-armor#readme", "engines": { "node": ">=18.0.0" }, "devDependencies": { "tsdown": "^0.20.1", "typescript": "^5" }, "module": "./dist/index.mjs", "scripts": { "build": "tsdown", "test": "vitest --run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "type-check": "tsc --noEmit", "clean": "rm -rf dist tsconfig.tsbuildinfo" } }