From 67ecf168a2ed40a06527e1544ae22feb244d4941 Mon Sep 17 00:00:00 2001 From: Jacob Gillespie Date: Sun, 4 Jul 2021 15:04:44 +0100 Subject: [PATCH] Update package.json --- package.json | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f8a8521..58742ec 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,26 @@ { - "private": true, + "name": "zap", + "version": "0.0.1", + "description": "Lightweight HTTP server framework for Node", + "repository": { + "type": "git", + "url": "https://github.com/jacobwgillespie/zap.git" + }, + "homepage": "https://github.com/jacobwgillespie/zap", + "funding": { + "type": "GitHub", + "url": "https://github.com/sponsors/jacobwgillespie" + }, + "author": { + "name": "Jacob Gillespie", + "email": "jacobwgillespie@gmail.com" + }, + "license": "MIT", + "main": "./dist/zap.js", + "types": "./dist/zap.d.ts", + "files": [ + "dist" + ], "scripts": { "build": "tsc", "clean": "rm -rf dist",