-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
65 lines (65 loc) · 1.84 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
{
"name": "@workos-inc/authkit-nextjs",
"version": "0.17.2",
"description": "Authentication and session helpers for using WorkOS & AuthKit with Next.js",
"sideEffects": false,
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/esm/types/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.json",
"prepublishOnly": "npm run lint",
"lint": "eslint \"src/**/*.ts*\"",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "prettier \"{src,__tests__}/**/*.{js,ts,tsx}\" --check",
"format": "prettier \"{src,__tests__}/**/*.{js,ts,tsx}\" --write"
},
"dependencies": {
"@workos-inc/node": "^7.33.0",
"iron-session": "^8.0.1",
"jose": "^5.2.3",
"path-to-regexp": "^6.2.2"
},
"peerDependencies": {
"next": "^13.5.4 || ^14.0.3 || ^15.0.0",
"react": "^18.0 || ^19.0.0",
"react-dom": "^18.0 || ^19.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.28",
"@types/react": "18.2.67",
"@types/react-dom": "18.2.22",
"eslint": "^8.29.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next": "^15.0.1",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5.4.2",
"typescript-eslint": "^7.2.0"
},
"license": "MIT",
"homepage": "https://github.com/workos/authkit-nextjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/workos/authkit-nextjs.git"
},
"bugs": {
"url": "https://github.com/workos/authkit-nextjs/issues"
}
}