-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.76 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
{
"name": "@workos-inc/authkit-remix",
"version": "0.11.0",
"description": "Authentication and session helpers for using WorkOS & AuthKit with Remix",
"sideEffects": false,
"type": "commonjs",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig-cjs.json",
"prepublishOnly": "npm run lint",
"lint": "eslint \"src/**/*.ts*\"",
"test": "jest",
"prettier": "prettier \"{src,__tests__}/**/*.{js,ts,tsx}\" --check",
"format": "prettier --write \"{src,__tests__}/**/*.{js,ts,tsx}\""
},
"dependencies": {
"@workos-inc/node": "^7.41.0",
"iron-session": "^8.0.1",
"jose": "^5.2.3"
},
"peerDependencies": {
"@remix-run/node": "^2.16.0",
"react": "^18.0 || ^19.0.0",
"react-dom": "^18.0 || ^19.0.0"
},
"devDependencies": {
"@remix-run/node": "^2.16.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"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-remix#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/workos/authkit-remix.git"
},
"bugs": {
"url": "https://github.com/workos/authkit-remix/issues"
}
}