-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
110 lines (110 loc) · 3.21 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
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
{
"name": "@convex-dev/auth",
"version": "0.0.78",
"description": "Authentication for Convex",
"keywords": [
"authentication",
"authorization",
"auth",
"login",
"sign",
"convex"
],
"homepage": "https://labs.convex.dev/auth",
"bugs": "https://github.com/get-convex/convex-auth/issues",
"repository": "https://github.com/get-convex/convex-auth",
"license": "Apache-2.0",
"author": "xixixao",
"files": [
"dist",
"providers",
"react",
"server",
"src"
],
"type": "module",
"bin": "./dist/bin.cjs",
"sideEffects": false,
"scripts": {
"build:bin": "esbuild src/cli/index.ts --bundle --platform=node --format=cjs --outfile=dist/bin.cjs",
"build:server": "tsc --project tsconfig.server.json",
"build:react": "tsc --project tsconfig.react.json && mkdir -p dist && rm -rf dist/react && mv distreact/react dist/react && rm -r distreact",
"build:nextjs": "tsc --project tsconfig.nextjs.json && mkdir -p dist && rm -rf dist/nextjs && mv distnextjs/nextjs dist/nextjs && rm -r distnextjs",
"build": "rm -rf dist && npm run build:bin && npm run build:server && npm run build:react && npm run build:nextjs",
"docs": "cd docs && npm run dev",
"lint": "tsc && eslint . && cd test && npm run lint",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run build && npm run test:once",
"publish:example": "node publishExample.mjs",
"test": "cd test && npm run test",
"test:once": "cd test && npm run test:once"
},
"exports": {
"./server": {
"types": "./dist/server/index.d.ts",
"import": "./dist/server/index.js"
},
"./providers/*": {
"types": "./dist/providers/*.d.ts",
"import": "./dist/providers/*.js"
},
"./react": {
"import": "./dist/react/index.js",
"require": "./dist/react/index.js"
},
"./nextjs": {
"import": "./dist/nextjs/index.js",
"require": "./dist/nextjs/index.js"
},
"./nextjs/server": {
"import": "./dist/nextjs/server/index.js",
"require": "./dist/nextjs/server/index.js"
}
},
"dependencies": {
"arctic": "^1.2.0",
"cookie": "^1.0.1",
"jose": "^5.2.2",
"jwt-decode": "^4.0.0",
"lucia": "^3.2.0",
"oslo": "^1.1.2",
"path-to-regexp": "^6.3.0",
"server-only": "^0.0.1",
"oauth4webapi": "^3.1.2"
},
"peerDependencies": {
"@auth/core": "^0.37.0",
"convex": "^1.17.0",
"react": "^18.2.0 || ^19.0.0-0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"@comment devDependencies": [
"The dependencies of the CLI are also in devDependencies, built into",
"a bundle."
],
"devDependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@edge-runtime/vm": "^3.2.0",
"@types/inquirer": "^9.0.7",
"@types/node": "20.6.0",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"chalk": "^5.3.0",
"convex-test": "^0.0.20",
"dotenv": "^16.4.5",
"eslint": "8.49.0",
"inquirer": "^9.2.22",
"next": "^15.0.3",
"npm-run-all": "^4.1.5",
"react-dom": "^18.3.1",
"shelljs": "^0.8.5",
"tsup": "^8.0.1",
"typescript": "^5.5.2",
"valibot": "^0.35.0",
"vitest": "^1.6.0"
}
}