24 lines
616 B
JSON
24 lines
616 B
JSON
{
|
|
"name": "@mono/auth-core",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format cjs,esm --dts --clean --tsconfig tsconfig.json",
|
|
"dev": "tsup src/index.ts --format cjs,esm --dts --watch --clean --tsconfig tsconfig.json",
|
|
"clean": "rm -rf dist",
|
|
"lint": "eslint src/",
|
|
"check-types": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.3.3",
|
|
"@types/node": "^20.11.24"
|
|
}
|
|
}
|