Files
zitadel/packages/zitadel-next/package.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2023-04-03 15:38:50 +02:00
"name": "@zitadel/next",
2023-04-03 11:45:27 +02:00
"version": "0.0.0",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
2023-07-18 13:58:33 +02:00
"build": "tsup",
2023-06-16 01:36:19 +02:00
"test": "pnpm test:unit",
"test:watch": "pnpm test:unit:watch",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
2023-07-18 13:58:33 +02:00
"dev": "tsup --watch",
2023-04-03 11:45:27 +02:00
"lint": "eslint \"src/**/*.ts*\"",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
2023-05-25 16:19:58 +02:00
"@types/jest": "^29.5.1",
2023-07-18 13:58:33 +02:00
"@types/react": "^17.0.13",
2023-04-03 11:45:27 +02:00
"@zitadel/tsconfig": "workspace:*",
"eslint": "^7.32.0",
"eslint-config-zitadel": "workspace:*",
2023-05-25 16:19:58 +02:00
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
2023-05-25 17:11:36 +02:00
"ts-node": "^10.9.1",
2023-04-03 11:45:27 +02:00
"tsup": "^5.10.1",
2023-07-18 13:58:33 +02:00
"typescript": "^4.9.3",
"tailwindcss": "3.2.4",
"postcss": "8.4.21",
2023-07-27 11:05:42 +02:00
"zitadel-tailwind-config": "workspace:*",
"@zitadel/server": "workspace:*"
2023-04-03 11:45:27 +02:00
},
2023-04-03 15:38:50 +02:00
"peerDependencies": {
2023-07-18 13:58:33 +02:00
"@zitadel/react": "workspace:*",
"@zitadel/server": "workspace:*",
"next": "^13",
"react": "18.2.0"
2023-04-03 15:38:50 +02:00
},
2023-04-03 11:45:27 +02:00
"publishConfig": {
"access": "public"
2023-07-18 13:58:33 +02:00
},
"dependencies": {
"next": "^13.4.10"
2023-04-03 11:45:27 +02:00
}
2023-07-18 13:58:33 +02:00
}