generated from willin/remix-cloudflare-pages-demo
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
64 lines (64 loc) · 1.41 KB
/
package.json
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
{
"name": "@hono-dev/auth-alipay",
"version": "0.0.1",
"description": "Alipay Authentication Strategy for Hono",
"author": "Willin Wang <[email protected]> (https://willin.wang/)",
"keywords": [
"hono",
"auth",
"authentication",
"local",
"auth0",
"authing",
"oauth2",
"alipay",
"strategies"
],
"repository": {
"type": "git",
"url": "git+https://github.com/willin/sso.git"
},
"bugs": {
"url": "https://github.com/willin/sso/issues"
},
"homepage": "https://sso.willin.wang",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"lint": "prettier --write . && eslint . --fix",
"prepublishOnly": "npm run build",
"test": "vitest run --pass-with-no-tests"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"LICENSE",
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"dependencies": {},
"peerDependencies": {
"hono": ">=3"
},
"devDependencies": {
"@vitest/coverage-istanbul": "^1.1.0",
"hono": "^3.11.10",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.1.0"
},
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}