Files
zitadel/packages/zitadel-proto/package.json
Elio Bischof e210d0a16a chore: fix login integration (#10318)
# Which Problems Are Solved

Login integration tests are not executed in the pipeline

# How the Problems Are Solved

The login integration tests are fixed and added as a pipeline workflow.
It  tests against the built login docker image.
On pipeline failures, developers are guided on how to fix them using a
dev container configured for this purpose.

# Additional Changes

- email domains are replaced by example.com. In case the tests were
accidentally run against a cloud instance, it wouldn't cause bounces.
- pnpm is upgraded, because the --filter argument doesn't work for the
install command on the old version.
- The login Dockerfile is optimized for docker image builds

# Additional Changes From Review for
https://github.com/zitadel/zitadel/pull/10305

These changes were requested from @peintnermax 

- The base dev container starts without any services besides the
database and the dev container itself
- CONTRIBUTING.md is restructured
- To reproduce pipeline checks, only the devcontainer CLI and Docker are
needed. This is described in the CONTRIBUTING.md
- The convenience npm script "generate" is added

# Additional Context

- Follow-up for PR https://github.com/zitadel/zitadel/pull/10305
- Base for https://github.com/zitadel/zitadel/issues/10277
2025-08-05 15:59:30 +00:00

91 lines
2.2 KiB
JSON

{
"packageManager": "pnpm@10.13.1",
"name": "@zitadel/proto",
"version": "1.3.1",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./cjs/index.js",
"types": "./types/index.d.ts",
"files": [
"cjs/**",
"es/**",
"types/**",
"zitadel/**",
"google/**",
"validate/**",
"protoc-gen-openapiv2/**"
],
"exports": {
"./zitadel/*": {
"types": "./types/zitadel/*.d.ts",
"import": "./es/zitadel/*.js",
"require": "./cjs/zitadel/*.js"
},
"./zitadel/*.js": {
"types": "./types/zitadel/*.d.ts",
"import": "./es/zitadel/*.js",
"require": "./cjs/zitadel/*.js"
},
"./validate/*": {
"types": "./types/validate/*.d.ts",
"import": "./es/validate/*.js",
"require": "./cjs/validate/*.js"
},
"./validate/*.js": {
"types": "./types/validate/*.d.ts",
"import": "./es/validate/*.js",
"require": "./cjs/validate/*.js"
},
"./google/*": {
"types": "./types/google/*.d.ts",
"import": "./es/google/*.js",
"require": "./cjs/google/*.js"
},
"./google/*.js": {
"types": "./types/google/*.d.ts",
"import": "./es/google/*.js",
"require": "./cjs/google/*.js"
},
"./protoc-gen-openapiv2/*": {
"types": "./types/protoc-gen-openapiv2/*.d.ts",
"import": "./es/protoc-gen-openapiv2/*.js",
"require": "./cjs/protoc-gen-openapiv2/*.js"
},
"./protoc-gen-openapiv2/*.js": {
"types": "./types/protoc-gen-openapiv2/*.d.ts",
"import": "./es/protoc-gen-openapiv2/*.js",
"require": "./cjs/protoc-gen-openapiv2/*.js"
}
},
"typesVersions": {
"*": {
"zitadel/*": [
"./types/zitadel/*"
],
"validate/*": [
"./types/validate/*"
],
"google/*": [
"./types/google/*"
],
"protoc-gen-openapiv2/*": [
"./types/protoc-gen-openapiv2/*"
]
}
},
"sideEffects": false,
"scripts": {
"generate": "buf generate ../../proto",
"clean": "rm -rf zitadel .turbo node_modules google protoc-gen-openapiv2 validate cjs types es"
},
"dependencies": {
"@bufbuild/protobuf": "^2.6.1"
},
"devDependencies": {
"@bufbuild/buf": "^1.55.1",
"glob": "^11.0.0"
}
}