typocomath/package.json5

39 lines
1.3 KiB
Plaintext
Raw Normal View History

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',
'experiment:infer1': 'ttsc -b && node build/plugins/infer1.js ./src/generic/arithmetic.ts',
'experiment:infer1-direct': 'ttsc -b && node build/plugins/infer1.js ./src/experiment/arithmeticInfer1.ts',
2023-03-14 08:51:28 +00:00
'experiment:infer2': 'ttsc -b && node build/plugins/infer2.js ./src/experiment/arithmeticInfer2.ts',
'experiment:infer3': 'ttsc -b && node build/plugins/infer3.js ./src/experiment/arithmeticInfer3.js',
2023-09-01 15:52:44 +00:00
'experiment:infer4': 'ttsc -b && node build/plugins/infer4.js ./src/experiment/arithmeticInfer4.ts',
'experiment:infer4:plugin': 'ttsc -b',
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',
'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',
typescript: '4.7.4',
2022-12-02 14:15:25 +00:00
},
}