mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 07:32:27 +00:00
46 lines
1.1 KiB
JSON
46 lines
1.1 KiB
JSON
{
|
|
"name": "@zitadel/next",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"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.3",
|
|
"react": "18.2.0"
|
|
},
|
|
"dependencies": {
|
|
"next": "^14.2.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^17.0.80",
|
|
"@zitadel/tsconfig": "workspace:*",
|
|
"eslint-config-zitadel": "workspace:*",
|
|
"postcss": "8.4.31",
|
|
"tailwindcss": "3.2.4",
|
|
"zitadel-tailwind-config": "workspace:*"
|
|
}
|
|
}
|