2022-09-06 18:28:18 +00:00
|
|
|
{
|
|
|
|
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',
|
2022-09-07 06:07:58 +00:00
|
|
|
scripts: {
|
|
|
|
test: 'echo "Error: no test specified" && exit 1',
|
2022-09-25 20:02:01 +00:00
|
|
|
build: 'ttsc -b',
|
2022-09-06 18:28:18 +00:00
|
|
|
},
|
2022-09-07 06:07:58 +00:00
|
|
|
keywords: [
|
|
|
|
'math',
|
|
|
|
'typescript',
|
|
|
|
],
|
2022-09-06 18:28:18 +00:00
|
|
|
repository: {
|
|
|
|
type: 'git',
|
|
|
|
url: 'https://code.studioinfinity.org/glen/typomath.git',
|
2022-09-07 01:09:47 +00:00
|
|
|
},
|
|
|
|
author: 'Glen Whitney',
|
2022-09-07 06:07:58 +00:00
|
|
|
license: 'Apache-2.0',
|
|
|
|
dependencies: {
|
|
|
|
'over.ts': 'github:m93a/over.ts',
|
2022-09-25 20:02:01 +00:00
|
|
|
'reflect-metadata': '^0.1.13',
|
2022-09-07 06:07:58 +00:00
|
|
|
typescript: '^4.8.2',
|
2022-09-25 20:02:01 +00:00
|
|
|
'typescript-rtti': '^0.8.2',
|
|
|
|
},
|
|
|
|
devDependencies: {
|
|
|
|
'@types/node': '^18.7.21',
|
|
|
|
'ts-node': '^10.9.1',
|
|
|
|
ttypescript: '^1.5.13',
|
2022-09-07 06:07:58 +00:00
|
|
|
},
|
2022-09-06 18:28:18 +00:00
|
|
|
}
|