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

41 lines
1.0 KiB
JSON
Raw Normal View History

2023-04-03 11:45:27 +02:00
{
2023-04-14 09:09:21 +02:00
"name": "@zitadel/server",
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",
"type": "commonjs",
2023-04-03 11:45:27 +02:00
"sideEffects": false,
"license": "MIT",
"files": [
"dist/**"
],
"scripts": {
2023-05-25 17:11:36 +02:00
"generate": "buf generate https://github.com/zitadel/zitadel.git --path ./proto/zitadel",
"build": "tsup --dts",
2023-06-16 01:36:19 +02:00
"test": "pnpm test:unit",
"test:watch": "pnpm test:unit:watch",
2024-05-16 03:02:22 -04:00
"test:unit": "vitest",
"test:unit:watch": "vitest --watch",
"dev": "tsup --dts --watch",
2023-04-03 11:45:27 +02:00
"lint": "eslint \"src/**/*.ts*\"",
2023-09-20 08:30:38 +02:00
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist && rm -rf src/proto"
2023-04-03 11:45:27 +02:00
},
"devDependencies": {
2023-04-20 14:47:14 +02:00
"@bufbuild/buf": "^1.14.0",
2023-04-03 11:45:27 +02:00
"@zitadel/tsconfig": "workspace:*",
"eslint-config-zitadel": "workspace:*",
2024-05-16 03:02:22 -04:00
"ts-proto": "^1.139.0"
2023-04-03 11:45:27 +02:00
},
"publishConfig": {
"access": "public"
2023-04-06 18:57:58 +02:00
},
"dependencies": {
2023-04-13 13:26:02 +02:00
"jose": "^4.13.1",
2023-04-14 13:35:27 +02:00
"long": "^5.2.1",
2023-04-06 18:57:58 +02:00
"nice-grpc": "2.0.1",
"nice-grpc-common": "^2.0.2",
2023-04-13 13:26:02 +02:00
"protobufjs": "^7.2.3"
2023-04-03 11:45:27 +02:00
}
2024-05-16 03:02:22 -04:00
}