-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@zitadel/sdk-react",
"version": "0.1.0-alpha.3",
"description": "React components for the Zitadel auth UI (client-side SPA).",
"homepage": "https://github.com/zitadel/nextgen/tree/main/packages/sdk-react#readme",
"bugs": {
"url": "https://github.com/zitadel/nextgen/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zitadel/nextgen.git",
"directory": "packages/sdk-react"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts src/react.tsx src/types.ts --format esm --dts --clean --tsconfig tsconfig.json --external react react-dom",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run --passWithNoTests",
"lint": "eslint ."
},
"dependencies": {
"@lit/react": "^1.0.8",
"@zitadel/api": "workspace:*",
"@zitadel/components": "workspace:*",
"@zitadel/sdk-core": "workspace:*"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@testing-library/react": "catalog:",
"@types/react": "catalog:",
"eslint": "^9.0.0",
"jsdom": "catalog:",
"react": "catalog:",
"react-dom": "catalog:",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^3.0.0",
"@eslint/json": "^0.11.0",
"@eslint/markdown": "^6.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-perfectionist": "^4.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript-eslint": "^8.0.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-testing-library": "^7.0.0"
}
}