UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

71 lines (70 loc) 2.02 kB
{ "name": "@authup/core-kit", "type": "module", "version": "1.0.0-beta.32", "description": "Package containing global constants, types & interfaces.", "license": "Apache-2.0", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "import": "./dist/index.mjs" } }, "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "files": [ "dist" ], "scripts": { "build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json", "build:js": "rollup -c", "build": "rimraf dist && cross-env NODE_ENV=production npm run build:js && npm run build:types", "build:watch": "npm run build -- --watch", "test": "cross-env NODE_ENV=test vitest run test/unit", "test:coverage": "cross-env NODE_ENV=test vitest run --coverage" }, "engines": { "node": "^20.19.0 || ^22.13.0 || ^23.5.0 || >=24.0.0" }, "keywords": [ "auth", "authentication", "authorization", "types", "interfaces", "entities", "validators", "oauth2", "domain-model", "typescript" ], "author": { "name": "Peter Placzek", "email": "contact@tada5hi.net", "url": "https://github.com/tada5hi" }, "repository": { "type": "git", "url": "git+https://github.com/authup/authup.git", "directory": "packages/core-kit" }, "bugs": { "url": "https://github.com/authup/authup/issues" }, "homepage": "https://github.com/authup/authup#readme", "dependencies": { "@authup/kit": "^1.0.0-beta.32", "@authup/errors": "^1.0.0-beta.32", "@authup/specs": "^1.0.0-beta.32", "@validup/adapter-zod": "^0.2.4", "validup": "^0.2.2", "zod": "^4.3.6" }, "devDependencies": { "vitest": "^4.0.14" }, "publishConfig": { "access": "public" } }