-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "@sigauth/library-wrapper",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Middleware for lifting SigAuth authentication and authorization.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://sigauth.org",
"repository": {
"type": "git",
"url": "https://github.com/SigAuth/sigauth-library"
},
"scripts": {
"format": "prettier --write .",
"publish": "pnpm run -r build && pnpm -r publish --access public"
},
"keywords": [
"sigauth",
"authentication",
"authorization",
"oauth2",
"oidc"
],
"author": "Ben Hacker",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"jiti": "^2.6.0",
"prettier": "^3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.45.0"
}
}