-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.59 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
{
"name": "cloudfire-auth",
"version": "0.4.0",
"author": "Connor Skelland",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"description": "Firebase Auth in Cloudflare Workers.",
"homepage": "https://connor56.github.io/cloudfire-auth/",
"repository": {
"type": "git",
"url": "git+https://github.com/Connor56/cloudfire-auth.git"
},
"bugs": {
"url": "https://github.com/Connor56/cloudfire-auth/issues"
},
"keywords": [
"firebase",
"auth",
"cloudflare",
"workers",
"authentication",
"jwt",
"firebase-auth"
],
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest run",
"test:integration": "npx tsx scripts/test-integration.ts",
"build": "tsc",
"clean": "tsx scripts/publishing/remove-dist.ts",
"build:watch": "tsc --watch",
"docs:build": "npx tsx scripts/docs/build-docs.ts",
"prepublishOnly": "npm run test && npm run clean && npm run build"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20250816.0",
"@types/node": "^24.3.0",
"dotenv": "^17.2.1",
"firebase-admin": "^13.4.0",
"tsx": "^4.20.4",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.2",
"vitepress": "^1.6.4",
"vitest": "^3.1.0"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md",
"package.json",
"third_party/*"
],
"dependencies": {
"jose": "^6.0.12"
}
}