-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@hellocoop/emdash",
"version": "0.1.1",
"description": "Hellō authentication provider for EmDash CMS — login with Hellō, plus OpenID Provider Commands for account lifecycle",
"type": "module",
"main": "./dist/auth.js",
"exports": {
".": {
"types": "./dist/auth.d.ts",
"default": "./dist/auth.js"
},
"./admin": {
"types": "./dist/admin.d.ts",
"default": "./dist/admin.js"
},
"./routes/*": {
"types": "./dist/routes/*.d.ts",
"default": "./dist/routes/*.js"
},
"./commands/*": {
"types": "./dist/commands/*.d.ts",
"default": "./dist/commands/*.js"
},
"./config": {
"types": "./dist/config.d.ts",
"default": "./dist/config.js"
},
"./storage": {
"types": "./dist/storage.d.ts",
"default": "./dist/storage.js"
}
},
"files": [
"dist"
],
"keywords": [
"emdash",
"cms",
"auth",
"hello",
"hellocoop",
"oidc",
"openid",
"provider-commands"
],
"author": {
"name": "Hello Identity Co-op",
"email": "contact@hello.coop",
"url": "https://hello.coop"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hellocoop/emdash.git"
},
"bugs": {
"url": "https://github.com/hellocoop/emdash/issues"
},
"homepage": "https://www.hello.dev",
"engines": {
"node": ">=22.16"
},
"peerDependencies": {
"@emdash-cms/auth": ">=0.35.0",
"astro": ">=5",
"emdash": ">=0.35.0",
"react": ">=18"
},
"dependencies": {
"@hellocoop/definitions": "^1.0.13",
"@hellocoop/helper-server": "^2.2.5",
"jose": "^6.2.11"
},
"devDependencies": {
"@cloudflare/kumo": "^2.13.1",
"@emdash-cms/auth": "^0.36.0",
"@types/react": "^19.2.18",
"astro": "^7.3.1",
"emdash": "^0.36.0",
"kysely": "^0.29.5",
"react": "^19.2.8",
"typescript": "^6.0.3",
"vitest": "^5.0.0"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"types": "./dist/auth.d.ts"
}