chore: pnpm init and add TypeScript

This commit is contained in:
Glen Whitney 2022-12-02 09:15:25 -05:00
parent 215a36a847
commit 78f3975d54
3 changed files with 40 additions and 0 deletions

23
package.json5 Normal file
View file

@ -0,0 +1,23 @@
{
name: 'typocomath',
version: '0.0.1',
description: 'A hopeful final typescipt-pragmatic mathjs proof-of-concept',
main: 'index.ts',
scripts: {
test: 'echo "Error: no test specified" && exit 1',
},
keywords: [
'math',
'algebra',
'typescript',
],
author: 'Jos de Jong and Glen Whitney',
license: 'Apache 2.0',
repository: {
type: 'git',
url: 'https://code.studioinfinity.org/glen/typocomath.git',
},
devDependencies: {
typescript: '^4.9.3',
},
}