mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-10 21:22:16 +00:00
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@zitadel/client",
|
|
"version": "0.0.0",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist/**"
|
|
],
|
|
"scripts": {
|
|
"generate": "buf generate https://github.com/zitadel/zitadel.git --path ./proto/zitadel",
|
|
"build": "tsup --dts",
|
|
"test": "pnpm test:unit",
|
|
"test:watch": "pnpm test:unit:watch",
|
|
"test:unit": "jest",
|
|
"test:unit:watch": "jest --watch",
|
|
"dev": "tsup --watch --dts",
|
|
"lint": "eslint \"src/**/*.ts*\"",
|
|
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
|
|
},
|
|
"devDependencies": {
|
|
"@bufbuild/buf": "^1.14.0",
|
|
"@types/jest": "^29.5.1",
|
|
"@zitadel/tsconfig": "workspace:*",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-zitadel": "workspace:*",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"ts-node": "^10.9.1",
|
|
"ts-proto": "^1.139.0",
|
|
"tsup": "^5.10.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"jose": "^4.13.1",
|
|
"nice-grpc-web": "^3.2.3",
|
|
"protobufjs": "^7.2.3"
|
|
}
|
|
}
|