-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.19 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.19 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
{
"name": "at-astro-loader",
"version": "1.1.0",
"private": false,
"description": "An Astro content loader for records on ATProto.",
"keywords": [
"astro",
"astro-integration",
"astro-loader",
"atproto",
"atprotocol",
"bluesky",
"content-collections",
"withastro"
],
"homepage": "https://github.com/chrisvander/at-astro-loader",
"repository": "git+https://github.com/chrisvander/at-astro-loader.git",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsgo && vite build",
"check": "tsgo",
"test": "bun test",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint:fix": "oxlint --fix"
},
"dependencies": {
"@atproto/lex": "^0.0.20",
"@atproto/lex-client": "^0.0.15",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.11",
"@typescript/native-preview": "^7.0.0-dev.20260315.1",
"oxfmt": "^0.40.0",
"oxlint": "^1.55.0",
"typescript": "^5.9.3",
"vite": "^8.0.0",
"vite-bundle-analyzer": "^1.3.6",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"astro": "^5 || ^6"
}
}