2022-12-02 14:15:25 +00:00
|
|
|
{
|
|
|
|
name: 'typocomath',
|
2023-10-17 22:02:18 +00:00
|
|
|
version: '0.0.2',
|
2022-12-02 14:15:25 +00:00
|
|
|
description: 'A hopeful final typescipt-pragmatic mathjs proof-of-concept',
|
|
|
|
main: 'index.ts',
|
|
|
|
scripts: {
|
|
|
|
test: 'echo "Error: no test specified" && exit 1',
|
2023-10-17 22:02:18 +00:00
|
|
|
build: 'mkdirp build && cpy etc/package.json build --flat && tsc',
|
|
|
|
start: 'node build',
|
|
|
|
go: 'pnpm clean && pnpm build && pnpm start',
|
|
|
|
clean: 'del-cli build',
|
2022-12-02 14:15:25 +00:00
|
|
|
},
|
2023-08-23 03:20:10 +00:00
|
|
|
packageManager: 'pnpm',
|
2022-12-02 14:15:25 +00:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
devDependencies: {
|
2023-10-17 22:02:18 +00:00
|
|
|
'@types/node': '20.8.4',
|
|
|
|
'cpy-cli': '5.0.0',
|
|
|
|
'del-cli': '5.1.0',
|
|
|
|
mkdirp: '3.0.1',
|
|
|
|
'source-map': '0.7.4',
|
|
|
|
'ts-macros': '2.6.0',
|
|
|
|
'ts-patch': '3.0.2',
|
|
|
|
typescript: '5.1.6',
|
2022-12-02 14:15:25 +00:00
|
|
|
},
|
|
|
|
}
|