mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 06:13:21 +00:00
49 lines
1.1 KiB
JSON
49 lines
1.1 KiB
JSON
{
|
|
"name": "@zitadel/next",
|
|
"version": "0.0.0",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "pnpm test:unit",
|
|
"test:watch": "pnpm test:unit:watch",
|
|
"test:unit": "vitest",
|
|
"test:unit:watch": "vitest --watch",
|
|
"dev": "tsup --watch",
|
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"peerDependencies": {
|
|
"@zitadel/node": "workspace:*",
|
|
"@zitadel/react": "workspace:*",
|
|
"@zitadel/client": "workspace:*",
|
|
"@zitadel/proto": "workspace:*",
|
|
"next": "^14.2.5",
|
|
"react": "^18.3.1"
|
|
},
|
|
"dependencies": {
|
|
"next": "^14.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.3",
|
|
"@zitadel/tsconfig": "workspace:*",
|
|
"eslint-config-zitadel": "workspace:*",
|
|
"postcss": "8.4.41",
|
|
"tailwindcss": "3.4.9",
|
|
"zitadel-tailwind-config": "workspace:*"
|
|
}
|
|
}
|