sgnl-secevent
Version:
A comprehensive JavaScript/TypeScript library for Security Event Tokens (SET) implementing RFC 8417, CAEP, and SSF standards
102 lines (101 loc) • 2.91 kB
JSON
{
"name": "sgnl-secevent",
"version": "1.0.0",
"description": "A comprehensive JavaScript/TypeScript library for Security Event Tokens (SET) implementing RFC 8417, CAEP, and SSF standards",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\" \"test/**/*.{ts,js}\"",
"prepublishOnly": "npm run build && npm run test",
"docs": "typedoc --out docs src/index.ts",
"version": "npm run format && git add -A src test",
"postversion": "git push && git push --tags",
"release": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"release:beta": "npm version prerelease --preid=beta && npm publish --tag beta --access public",
"release:alpha": "npm version prerelease --preid=alpha && npm publish --tag alpha --access public"
},
"keywords": [
"security",
"jwt",
"set",
"security-event-token",
"caep",
"ssf",
"rfc8417",
"oauth",
"openid",
"authentication",
"authorization",
"continuous-access-evaluation",
"shared-signals",
"sgnl"
],
"author": "SGNL.ai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SGNL-ai/secevent-js.git"
},
"bugs": {
"url": "https://github.com/SGNL-ai/secevent-js/issues"
},
"homepage": "https://github.com/SGNL-ai/secevent-js#readme",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.14.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"jose": "^5.2.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.1.2",
"jest": "^30.0.5",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typedoc": "^0.28.10",
"typescript": "^5.3.3"
},
"directories": {
"example": "examples",
"test": "test"
}
}