-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "@workos-inc/authkit-remix",
"version": "0.5.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": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@workos-inc/node": "^7.31.0",
"iron-session": "^8.0.1",
"jose": "^5.2.3"
},
"peerDependencies": {
"@remix-run/node": "^2.4.1",
"react": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.14.2",
"eslint": "^8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-require-extensions": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"prettier": "^3.3.3",
"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"
}
}