2022-12-02 14:15:25 +00:00
|
|
|
{
|
|
|
|
name: 'typocomath',
|
|
|
|
version: '0.0.1',
|
|
|
|
description: 'A hopeful final typescipt-pragmatic mathjs proof-of-concept',
|
|
|
|
main: 'index.ts',
|
|
|
|
scripts: {
|
2023-01-25 13:42:23 +00:00
|
|
|
'build-and-run': 'ttsc -b && node build',
|
2023-03-14 08:51:28 +00:00
|
|
|
'experiment:infer1': 'ttsc -b && node build/plugins/infer.js ./src/generic/arithmetic.ts',
|
|
|
|
'experiment:infer1-direct': 'ttsc -b && node build/plugins/infer.js ./src/experiment/arithmeticInfer1.ts',
|
|
|
|
'experiment:infer2': 'ttsc -b && node build/plugins/infer2.js ./src/experiment/arithmeticInfer2.ts',
|
2022-12-02 14:15:25 +00:00
|
|
|
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',
|
|
|
|
},
|
2023-01-25 13:42:23 +00:00
|
|
|
dependencies: {
|
|
|
|
'reflect-metadata': '0.1.13',
|
2023-08-18 06:34:03 +00:00
|
|
|
'source-map': '^0.7.4',
|
2023-02-02 14:52:15 +00:00
|
|
|
'typescript-rtti': '0.8.3',
|
2023-01-25 13:42:23 +00:00
|
|
|
},
|
2022-12-02 14:15:25 +00:00
|
|
|
devDependencies: {
|
2023-01-25 13:42:23 +00:00
|
|
|
'@types/node': '18.11.18',
|
|
|
|
'ts-node': '10.9.1',
|
|
|
|
ttypescript: '1.5.15',
|
2023-02-02 14:07:47 +00:00
|
|
|
typescript: '4.7.4',
|
2022-12-02 14:15:25 +00:00
|
|
|
},
|
|
|
|
}
|