-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "@incubateur-ademe/next-auth-espace-membre-provider",
"version": "0.1.0",
"description": "NextAuth.js provider pour l'Espace Membre BetaGouv",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/incubateur-ademe/next-auth-espace-membre-provider.git"
},
"author": "Incubateur ADEME <accelerateurdelatransitionecologique@ademe.fr>",
"license": "MIT",
"type": "module",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./EspaceMembreClient": {
"import": "./dist/client/index.js",
"types": "./dist/client/index.d.ts"
}
},
"scripts": {
"build": "vite build",
"lint": "biome check ."
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tsconfig/recommended": "^1.0.8",
"@types/node": "^18",
"next-auth": "beta",
"typescript": "^5.7.2",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"next-auth": "beta"
}
}