From 8aea7fbb1d443f934515a665e6cbd8bb90d07e0a Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Tue, 6 Sep 2022 14:28:18 -0400 Subject: [PATCH] chore: Set up basic package.json5 file --- package.json5 | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 package.json5 diff --git a/package.json5 b/package.json5 new file mode 100644 index 0000000..25ba2cd --- /dev/null +++ b/package.json5 @@ -0,0 +1,15 @@ +{ + name: 'typomath', + version: '0.0.0', + description: 'Proof of concepts for a PocoMath-adjacent approach to a possible math.ts (TypeScript analogue of mathjs)', + main: 'index.js', + 'scripts': { + test: 'echo "Error: no test specified" && exit 1' + }, + keywords: ['math', 'typescript'], + repository: { + type: 'git', + url: 'https://code.studioinfinity.org/glen/typomath.git', + "author": "Glen Whitney", + "license": "Apache-2.0" +}