passport/package.json
Sergey Krylov 94266dfa8f
All checks were successful
Publish / Publish npm package action (push) Successful in 18s
feat: add passport module
2026-01-31 15:28:03 +03:00

29 lines
607 B
JSON

{
"name": "@teacinema/passport",
"version": "1.0.0",
"description": "TeaCinema authentication library",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@teacinema/core": "^1.0.9",
"@types/node": "^25.1.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@nestjs/common": "^11.1.12",
"@nestjs/core": "^11.1.12",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2"
}
}