summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authoraspizu <aspizu@protonmail.com>2025-03-10 03:45:01 +0530
committeraspizu <aspizu@protonmail.com>2025-03-10 03:45:01 +0530
commit1656bbef4ac09f60d901c372617312888dd147d9 (patch)
tree551755d462d61e7d68889456d12552cb9eb13dcb /package.json
parent74d877c774dc293deaf1bc49493c4e760ac849b3 (diff)
feat: update package metadata and add peer dependencies
Diffstat (limited to 'package.json')
-rw-r--r--package.json25
1 files changed, 22 insertions, 3 deletions
diff --git a/package.json b/package.json
index b9fd92a..c7b1358 100644
--- a/package.json
+++ b/package.json
@@ -1,9 +1,14 @@
{
"name": "astro-gemtext",
- "version": "0.1.0",
+ "homepage": "https://github.com/aspizu/astro-gemtext",
+ "version": "0.2.0",
"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"
@@ -11,9 +16,19 @@
"files": [
"dist"
],
- "author": "",
+ "keywords": [
+ "astro",
+ "renderer",
+ "astro-component",
+ "withastro"
+ ],
+ "author": {
+ "name": "Priyanshu Dangare",
+ "email": "aspizu@protonmail.com",
+ "url": "https://github.com/aspizu"
+ },
"license": "MIT",
- "description": "",
+ "description": "gemtext integration for Astro.",
"dependencies": {
"gemtext": "^0.2.2"
},
@@ -21,6 +36,10 @@
"@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"
}
}