-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "effect-oidc",
"version": "0.0.10",
"description": "OIDC provider primitives, JWT+JWKS signing and verification, and HttpApi resource-server middleware for Effect",
"keywords": [
"effect-ts",
"jwks",
"jwt",
"oauth",
"oidc"
],
"homepage": "https://github.com/leonitousconforti/effect-oidc",
"bugs": {
"url": "https://github.com/leonitousconforti/effect-oidc/issues",
"email": "leo@leoconforti.us"
},
"license": "GPL-3.0-only",
"author": "Leo Conforti <leo@leoconforti.us> (https://leoconforti.us)",
"repository": {
"type": "git",
"url": "git+https://github.com/leonitousconforti/effect-oidc.git"
},
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"type": "module",
"sideEffects": [],
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./internal/*": null,
"./*/index": null
},
"publishConfig": {
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*.js",
"./internal/*": null,
"./*/index": null
},
"access": "public",
"provenance": true
},
"scripts": {
"prepare": "effect-tsgo patch --typescript --oxlint",
"clean": "rimraf *.tsbuildinfo docs dist coverage",
"circular": "madge --circular src/*.ts",
"codegen": "build-utils prepare-v4",
"check": "tsc -b tsconfig.json",
"lint": "oxlint && oxfmt --check",
"lint-fix": "oxlint --fix && oxfmt --write",
"build": "tsc -b tsconfig.build.json && pnpm babel",
"babel": "babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
"coverage": "vitest --coverage",
"test": "vitest",
"changeset-version": "changeset version",
"changeset-publish": "pnpm build && changeset publish"
},
"devDependencies": {
"@babel/cli": "8.0.4",
"@babel/core": "8.0.1",
"@babel/plugin-transform-export-namespace-from": "8.0.1",
"@babel/plugin-transform-modules-commonjs": "8.0.1",
"@changesets/cli": "3.0.0",
"@changesets/config": "4.0.0",
"@effect/build-utils": "0.8.9",
"@effect/docgen": "4.0.0-rc.108",
"@effect/platform-node": "4.0.0-rc.108",
"@effect/tsgo": "0.36.5",
"@effect/vitest": "4.0.0-rc.108",
"@types/node": "26.2.0",
"babel-plugin-annotate-pure-calls": "0.5.0",
"effect": "4.0.0-rc.108",
"ioredis": "5.11.1",
"madge": "8.0.0",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"oxlint-tsgolint": "7.0.2001",
"rimraf": "6.1.3",
"tsx": "4.23.12",
"typescript": "7.0.2",
"vitest": "4.1.10"
},
"peerDependencies": {
"effect": "4.0.0-rc.108"
},
"engines": {
"node": ">=22.0.0"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621"
}