-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.09 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.09 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
{
"name": "@imtbl/auth-next-client",
"version": "0.0.0",
"description": "Immutable Auth.js v5 integration for Next.js - Client-side components",
"author": "Immutable",
"license": "Apache-2.0",
"repository": "immutable/ts-immutable-sdk.git",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/node/index.cjs",
"module": "./dist/node/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"development": {
"types": "./src/index.ts",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
},
"default": {
"types": "./dist/types/index.d.ts",
"require": "./dist/node/index.cjs",
"default": "./dist/node/index.js"
}
}
},
"scripts": {
"build": "pnpm transpile && pnpm typegen",
"transpile": "tsup src/index.ts --config ./tsup.config.ts",
"typegen": "tsc --customConditions default --emitDeclarationOnly --outDir dist/types",
"pack:root": "pnpm pack --pack-destination $(dirname $(pnpm root -w))",
"lint": "eslint ./src --ext .ts,.jsx,.tsx --max-warnings=0",
"typecheck": "tsc --customConditions default --noEmit --jsx preserve",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@imtbl/auth": "workspace:*",
"@imtbl/auth-next-server": "workspace:*",
"fast-json-stable-stringify": "^2.1.0"
},
"peerDependencies": {
"next": "^14.0.0 || ^15.0.0",
"next-auth": "^5.0.0-beta.25",
"react": "^18.2.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"next": {
"optional": true
},
"next-auth": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@swc/core": "^1.4.2",
"@swc/jest": "^0.2.37",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.10.7",
"@types/react": "^18.3.5",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"next": "^15.2.6",
"next-auth": "^5.0.0-beta.30",
"react": "^18.2.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2"
}
}