@tradly/auth
Version:
Auth package for Tradly - handles authentication (email, phone, social login)
48 lines • 1.46 kB
JSON
{
"name": "@tradly/auth",
"version": "1.0.41",
"description": "Auth package for Tradly - handles authentication (email, phone, social login)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "tsc --watch --project tsconfig.build.json",
"clean": "rm -rf dist",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"test:ui": "vitest --ui",
"test:integration": "vitest run src/__tests__/integration",
"test:unit": "vitest run src/__tests__/utils src/__tests__/services --exclude src/__tests__/integration",
"test:all": "vitest run",
"prepublishOnly": "npm run test:integration"
},
"keywords": [
"tradly",
"auth",
"authentication",
"login",
"signup"
],
"author": "tradly",
"license": "ISC",
"homepage": "https://tradly.app/",
"repository": {
"type": "git",
"url": "https://github.com/TRADLY-PLATFORM"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"@vitest/ui": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0",
"jsdom": "^23.0.0",
"@types/node": "^20.0.0"
},
"peerDependencies": {
"@tradly/utility": "^1.0.0"
}
}