@iota-big3/sdk-middleware
Version:
Express and Fastify middleware for School OS SDK - TypeScript Edition
91 lines (90 loc) • 2.37 kB
JSON
{
"name": "@iota-big3/sdk-middleware",
"version": "2.0.0",
"description": "Express and Fastify middleware for School OS SDK - TypeScript Edition",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"require": "./dist/auth/index.js",
"import": "./dist/auth/index.js"
}
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"build": "tsc",
"build:watch": "tsc --watch",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"keywords": [
"middleware",
"express",
"fastify",
"schoolos",
"sdk",
"philosophy",
"logging",
"auth",
"typescript"
],
"author": "School OS Team",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"fastify": "^4.24.3",
"jsonwebtoken": "^9.0.2",
"joi": "^17.11.0",
"chalk": "^4.1.2",
"argon2": "^0.31.2",
"otplib": "^12.0.1",
"qrcode": "^1.5.3",
"ioredis": "^5.3.2",
"knex": "^3.1.0",
"@iota-big3/sdk-core": "file:../sdk-core",
"@iota-big3/sdk-types": "file:../sdk-types",
"@iota-big3/sdk-observability": "file:../sdk-observability"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.10.0",
"@types/qrcode": "^1.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3",
"sqlite3": "^5.1.6"
},
"peerDependencies": {
"@iota-big3/sdk-core": "file:../sdk-core"
},
"publishConfig": {
"access": "restricted",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/gdavis1361/iota-big3-sdk.git",
"directory": "packages/sdk-middleware"
},
"bugs": {
"url": "https://github.com/gdavis1361/iota-big3-sdk/issues"
},
"homepage": "https://github.com/gdavis1361/iota-big3-sdk/tree/main/packages/sdk-middleware#readme"
}