summaryrefslogtreecommitdiff
path: root/package.json
blob: a3a7b8849f90f8e5fdce3ad256842c15e678369f (plain)
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
{
    "name": "astro-gemtext",
    "homepage": "https://github.com/aspizu/astro-gemtext",
    "version": "0.3.3",
    "type": "module",
    "main": "dist/index.js",
    "types": "dist/index.d.ts",
    "repository": {
        "type": "git",
        "url": "https://github.com/aspizu/astro-gemtext.git"
    },
    "scripts": {
        "fmt": "bunx --bun prettier --write .",
        "compile": "tsc --outDir dist"
    },
    "files": [
        "dist"
    ],
    "keywords": [
        "astro",
        "renderer",
        "astro-component",
        "withastro"
    ],
    "author": {
        "name": "Priyanshu Dangare",
        "email": "aspizu@protonmail.com",
        "url": "https://github.com/aspizu"
    },
    "license": "MIT",
    "description": "gemtext integration for Astro.",
    "dependencies": {
        "gemtext": "^0.2.2",
        "yaml": "^2.8.3"
    },
    "devDependencies": {
        "@types/node": "^22.13.10",
        "astro": "^5.4.2",
        "prettier": "^3.5.3",
        "typescript": "^5.8.2",
        "vite": "^6.2.1"
    },
    "peerDependencies": {
        "astro": ">= 3.0.0"
    }
}