-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.7 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.7 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
{
"name": "atproto-oauth-client-cloudflare-workers",
"version": "0.2.2",
"type": "module",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": "./lib/index.js",
"./did-resolver": "./lib/did-resolver/index.js",
"./handle-resolver": "./lib/handle-resolver/index.js",
"./identity-resolver": "./lib/identity-resolver/index.js",
"./oauth-client": "./lib/oauth-client/index.js"
},
"imports": {
"#did-resolver": "./lib/did-resolver/index.js",
"#handle-resolver": "./lib/handle-resolver/index.js",
"#identity-resolver": "./lib/identity-resolver/index.js",
"#oauth-client": "./lib/oauth-client/index.js"
},
"scripts": {
"dev": "tsc --build tsconfig.json --watch",
"build": "tsc --build tsconfig.json",
"clean": "tsc --build tsconfig.json --clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nDimensional/atproto-oauth-client-cloudflare-workers.git"
},
"keywords": [
"atproto"
],
"author": "Joel Gustafson",
"license": "MIT",
"bugs": {
"url": "https://github.com/nDimensional/atproto-oauth-client-cloudflare-workers/issues"
},
"homepage": "https://github.com/nDimensional/atproto-oauth-client-cloudflare-workers#readme",
"devDependencies": {
"@types/node": "^24.5.2",
"prettier": "^3.6.2",
"typescript": "^5.9.2"
},
"dependencies": {
"@atproto-labs/fetch": "^0.2.3",
"@atproto-labs/pipe": "^0.1.1",
"@atproto-labs/simple-store": "^0.3.0",
"@atproto-labs/simple-store-memory": "^0.1.4",
"@atproto/did": "^0.2.0",
"@atproto/jwk-jose": "^0.1.10",
"@atproto/oauth-types": "^0.4.1",
"multiformats": "^13.4.1",
"zod": "^3.25.76"
}
}