diff --git a/README.md b/README.md index 47a840e..d34e87b 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,6 @@ -# New Repository Template +# Rondelle -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. - - +We may be contacted through our [Chat Server](http://chat.nhcarrigan.com) or via email at `contact@nhcarrigan.com`. \ No newline at end of file diff --git a/eslint.config.mjs b/eslint.config.mjs index 4a7b3c7..c05eee7 100644 --- a/eslint.config.mjs +++ b/eslint.config.mjs @@ -1,3 +1,5 @@ -import Config from "@nhcarrigan/eslint-config"; +import NaomisConfig from "@nhcarrigan/eslint-config"; -export default Config; \ No newline at end of file +export default [ + ...NaomisConfig, +]; \ No newline at end of file diff --git a/package.json b/package.json index facfd90..943fcfc 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,22 @@ { "name": "rondelle", - "version": "1.0.0", + "version": "0.0.0", "description": "", - "main": "./dist/index.js", - "type": "module", + "main": "./prod/index.js", "scripts": { "build": "tsc", - "lint": "eslint .", - "test": "echo \"Error: no test specified\" && exit 1" + "start": "op run --env-file=prod.env -- node prod/index.js", + "lint": "eslint src --max-warnings 0", + "test": "echo \"No tests yet\" && exit 0" }, "keywords": [], - "author": "", - "license": "ISC", - "packageManager": "pnpm@10.28.1", + "author": "Naomi Carrigan ", + "license": "See LICENSE.md", + "type": "module", "devDependencies": { "@nhcarrigan/eslint-config": "5.2.0", - "@nhcarrigan/typescript-config": "4.0.0", - "@types/node": "22.10.7", - "eslint": "9.19.0", + "@nhcarrigan/typescript-config": "1.0.0", + "@types/node": "22.10.6", "typescript": "5.7.3" - }, - "engines": { - "node": ">=20.0.0", - "pnpm": ">=9.0.0" } } diff --git a/tsconfig.json b/tsconfig.json index bb111a6..98e88cc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "extends": "@nhcarrigan/typescript-config", "compilerOptions": { "rootDir": "./src", - "outDir": "./dist" + "outDir": "./prod" }, "include": ["src/**/*"] } \ No newline at end of file