-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.89 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
{
"name": "at-astro",
"version": "1.1.1",
"private": false,
"description": "An Astro integration for the AT Protocol, implementing OAuth flow and publishing an authenticated client to fetch and mutate records.",
"keywords": [
"astro",
"astro-integration",
"atproto",
"atprotocol",
"withastro"
],
"homepage": "https://github.com/chrisvander/at-astro",
"repository": "git+https://github.com/chrisvander/at-astro.git",
"type": "module",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./auth": {
"types": "./dist/auth.d.mts",
"default": "./dist/auth.mjs"
},
"./middleware": {
"types": "./dist/middleware.d.mts",
"default": "./dist/middleware.mjs"
},
"./components/HandleField": "./dist/components/HandleField.astro",
"./components/HandleInput": "./dist/components/HandleInput.astro",
"./components/HandleOptions": "./dist/components/HandleOptions.astro",
"./components/HandleOption": "./dist/components/HandleOption.astro",
"./pages/*": {
"types": "./dist/pages/*.d.mts",
"default": "./dist/pages/*.mjs"
},
"./pages/oauth/*": {
"types": "./dist/pages/oauth/*.d.mts",
"default": "./dist/pages/oauth/*.mjs"
}
},
"scripts": {
"build": "tsdown",
"check": "tsc",
"test": "bun test",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"@atproto/jwk-webcrypto": "^0.3.4",
"@atproto/oauth-client": "^0.8.3"
},
"devDependencies": {
"@types/bun": "^1.4.0",
"oxfmt": "^0.64.0",
"oxlint": "^1.79.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@atproto/lex": "^0.3.6",
"astro": "^7"
}
}