package.json 519 B

12345678910111213141516171819202122232425
  1. {
  2. "name": "craftlab-auth",
  3. "version": "1.0.0",
  4. "description": "",
  5. "license": "ISC",
  6. "author": "isundil",
  7. "type": "module",
  8. "main": "dist/index.js",
  9. "types": "dist/index.d.ts",
  10. "build": "tsc",
  11. "scripts": {
  12. "test": "echo \"Error: no test specified\" && exit 1",
  13. "build": "npx tsc"
  14. },
  15. "devDependencies": {
  16. "crypto": "^1.0.1",
  17. "npx": "^10.2.2",
  18. "ts-node": "^10.9.2",
  19. "typescript": "^5.9.3"
  20. },
  21. "dependencies": {
  22. "base32-decode": "^1.0.0",
  23. "ldapts": "^8.0.9"
  24. }
  25. }