-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 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
{
"name": "@workos/authkit-session",
"version": "0.3.4",
"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",
"repository": {
"type": "git",
"url": "https://github.com/workos/authkit-session.git"
},
"devDependencies": {
"@types/node": "^20.17.0",
"@vitest/coverage-v8": "^4.0.17",
"prettier": "^3.7.4",
"typescript": "^5.9.3",
"vitest": "^4.0.17"
},
"dependencies": {
"@workos-inc/node": "8.0.0",
"iron-webcrypto": "^2.0.0",
"jose": "^6.1.3"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"src",
"README.md"
]
}