auth-tools/packages/client/package.json
2024-05-12 19:59:11 +00:00

33 lines
979 B
JSON

{
"name": "@auth-tools/client",
"version": "0.0.1-alpha.10",
"description": "A structured authentication protocol for Javascript. (client)",
"main": "dist/index.js",
"repository": "https://github.com/auth-tools/auth-tools",
"author": "Laurenz Rausche <laurenz@laurenz-rausche.de>",
"license": "MIT",
"private": false,
"scripts": {
"build": "npm run build:remove && tsc",
"build:remove": "rimraf dist",
"local": "npm run build && ts-node-dev --respawn local/index.ts",
"prepublish": "npm run build",
"remove": "npm run build:remove && rimraf node_modules yarn.lock package-lock.json pnpm-lock.yaml"
},
"dependencies": {
"@auth-tools/base": "^0.0.1-alpha.8",
"jwt-decode": "^4.0.0"
},
"devDependencies": {
"@auth-tools/client": "link:.",
"@auth-tools/logger": "^0.0.1-alpha.1",
"rimraf": "^5.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
},
"peerDependencies": {},
"files": [
"dist"
]
}