chore: Set up basic package.json5 file

This commit is contained in:
Glen Whitney 2022-09-06 14:28:18 -04:00
parent be7443bf4f
commit 8aea7fbb1d
1 changed files with 15 additions and 0 deletions

15
package.json5 Normal file
View File

@ -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"
}