-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.17 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.17 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@zitadel/astro-auth",
"description": "A comprehensive authentication integration for Astro applications with TypeScript support, framework-agnostic HTTP adapters, and role-based access control",
"version": "1.5.2",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"import": "./dist/components/index.js"
},
"./adapters": {
"types": "./dist/adapter.d.ts"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=22.12.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/zitadel/astro-auth.git"
},
"author": {
"name": "Mridang Agarwalla",
"email": "mridang@zitadel.com",
"url": "https://github.com/zitadel"
},
"scripts": {
"prepack": "tsc",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "jest --verbose --config=jest.config.mjs --runInBand --passWithNoTests",
"test:watch": "npm run test:unit -- --watch",
"typecheck": "tsc --noEmit",
"test:debug": "jest --verbose --config=jest.config.mjs --runInBand --detectOpenHandles",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "npm run build",
"build": "tsup",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "npx eslint . --fix",
"depcheck": "npx knip",
"docs": "typedoc"
},
"peerDependencies": {
"astro": ">=5.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.5.0",
"@jest/globals": "^30.0.5",
"@mridang/eslint-defaults": "^1.6.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.0",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@tsconfig/node22": "^22.0.2",
"@types/jest": "^30.0.0",
"@types/node": "^22.18.13",
"astro": "^6.0.0",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.4.0",
"jest": "30.0.5",
"jest-junit": "^17.0.0",
"knip": "^5.66.4",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"rollup": "^4.52.5",
"semantic-release": "^25.0.3",
"ts-jest": "29.4.0",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^5.9.3",
"@playwright/test": "^1.52.0",
"testcontainers": "^12.0.0"
},
"keywords": [
"auth",
"authentication",
"authorization",
"authn",
"authz",
"oauth",
"oidc",
"authjs",
"jwt",
"jwks",
"pkce",
"astro",
"astro-integration"
],
"private": false,
"homepage": "https://github.com/zitadel/astro-auth",
"bugs": "https://github.com/zitadel/astro-auth/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@auth/core": "^0.40.0"
}
}