@sgnl-ai/set-transmitter
Version:
HTTP transmission library for Security Event Tokens (SET) with CAEP/SSF support
107 lines • 3.05 kB
JSON
{
"name": "@sgnl-ai/set-transmitter",
"version": "1.0.0",
"description": "HTTP transmission library for Security Event Tokens (SET) with CAEP/SSF support",
"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"
},
"./constants": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.mjs",
"require": "./dist/constants.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": [
"SET",
"CAEP",
"SSF",
"security-events",
"jwt",
"transmission",
"shared-signals",
"rfc8417",
"oauth",
"openid",
"continuous-access-evaluation",
"sgnl"
],
"author": "SGNL.ai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sgnl-ai/set-transmitter-js.git"
},
"bugs": {
"url": "https://github.com/sgnl-ai/set-transmitter-js/issues"
},
"homepage": "https://github.com/sgnl-ai/set-transmitter-js#readme",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@sgnl-ai/secevent": "^1.0.0"
},
"peerDependenciesMeta": {
"@sgnl-ai/secevent": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.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"
}
}