From cb0da16c0b83fb41218ad292a393ed79622cc266 Mon Sep 17 00:00:00 2001 From: Naomi Carrigan Date: Tue, 15 Jul 2025 11:53:37 -0700 Subject: [PATCH] feat: npm init --- README.md | 39 --------------------------------------- package.json | 13 +++++++++++++ 2 files changed, 13 insertions(+), 39 deletions(-) delete mode 100644 README.md create mode 100644 package.json diff --git a/README.md b/README.md deleted file mode 100644 index 47a840e..0000000 --- a/README.md +++ /dev/null @@ -1,39 +0,0 @@ -# New Repository Template - -This template contains all of our basic files for a new GitHub repository. There is also a handy workflow that will create an issue on a new repository made from this template, with a checklist for the steps we usually take in setting up a new repository. - -If you're starting a Node.JS project with TypeScript, we have a [specific template](https://github.com/naomi-lgbt/nodejs-typescript-template) for that purpose. - -## Readme - -Delete all of the above text (including this line), and uncomment the below text to use our standard readme template. - - diff --git a/package.json b/package.json new file mode 100644 index 0000000..b0c6e32 --- /dev/null +++ b/package.json @@ -0,0 +1,13 @@ +{ + "name": "yurigpt", + "version": "0.0.0", + "description": "A webcomic about a girl dating an LLM, though she doesn't know it.", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "keywords": [], + "author": "", + "license": "ISC", + "packageManager": "pnpm@10.12.4" +}