typocomath/package.json5

33 lines
795 B
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',
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',
'typescript-rtti': '0.8.2',
},
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.8.4',
'typescript-rtti': '0.8.2',
2022-12-02 14:15:25 +00:00
},
}