Glen Whitney
2f0a9936a3
Note that the changes to module resolution cause steps one and two no longer to run because node can't find the imports, although they still compile fine. Co-authored-by: Glen Whitney <glen@studioinfinity.org> Reviewed-on: #4
32 lines
748 B
Plaintext
32 lines
748 B
Plaintext
{
|
|
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',
|
|
build: 'ttsc -b',
|
|
},
|
|
keywords: [
|
|
'math',
|
|
'typescript',
|
|
],
|
|
repository: {
|
|
type: 'git',
|
|
url: 'https://code.studioinfinity.org/glen/typomath.git',
|
|
},
|
|
author: 'Glen Whitney',
|
|
license: 'Apache-2.0',
|
|
dependencies: {
|
|
'over.ts': 'github:m93a/over.ts',
|
|
'reflect-metadata': '^0.1.13',
|
|
typescript: '^4.8.2',
|
|
'typescript-rtti': '^0.8.2',
|
|
},
|
|
devDependencies: {
|
|
'@types/node': '^18.7.21',
|
|
'ts-node': '^10.9.1',
|
|
ttypescript: '^1.5.13',
|
|
},
|
|
}
|