-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "@workos/authkit-session",
"version": "0.3.0",
"description": "Framework-agnostic authentication library for WorkOS with pluggable storage adapters",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "tsc -p tsconfig.build.json",
"rebuild": "pnpm run clean && pnpm run build",
"dev": "tsc -p tsconfig.build.json --watch",
"prepack": "npm run rebuild",
"prettier": "prettier --check .",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"test": "vitest --run",
"test:coverage": "vitest --run --coverage",
"test:watch": "vitest --watch"
},
"keywords": [],
"author": "WorkOS",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.17.0",
"@vitest/coverage-v8": "^4.0.10",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"vitest": "^4.0.10"
},
"dependencies": {
"@workos-inc/node": "^8.0.0-rc.3",
"iron-session": "^8.0.4",
"iron-webcrypto": "^1.2.1",
"jose": "^6.1.2"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"src",
"README.md"
]
}