-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.55 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.55 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
55
56
{
"name": "@seamless-auth/core",
"version": "0.2.1",
"description": "Framework-agnostic core authentication logic for SeamlessAuth",
"license": "AGPL-3.0-only",
"author": "Fells Code, LLC",
"sideEffects": false,
"homepage": "https://seamlessauth.com",
"repository": {
"type": "git",
"url": "https://github.com/fells-code/seamless-auth-server/tree/main/packages/core"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./handlers/*": {
"types": "./dist/handlers/*.d.ts",
"import": "./dist/handlers/*.js"
}
},
"files": [
"dist",
"LICENSE",
"LICENSE.md",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"jose": "^6.1.3",
"jsonwebtoken": "^9.0.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.10",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"publishConfig": {
"access": "public"
}
}