math5/package.json5
Glen Whitney 2a7723df68 chore: Get build working on linux again, hopefully w/o disrupting windows (#2)
Just puts the package.json contents into a file and copies it in place.

Reviewed-on: #2
Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Co-committed-by: Glen Whitney <glen@studioinfinity.org>
2024-10-12 15:32:00 +00:00

35 lines
860 B
Plaintext

{
name: 'math5',
version: '0.0.1',
description: 'Another prototype for a math core',
scripts: {
build: 'tsc && cp etc/package.json build/',
go: 'pnpm build && pnpm start',
prepare: 'ts-patch install -s',
start: 'node --experimental-loader tsc-module-loader build',
test: 'echo Error no test specified && exit 1',
},
packageManager: 'pnpm@9',
keywords: [
'math',
'algebra',
'typescript',
],
author: 'Glen Whitney',
license: 'Apache 2.0',
repository: {
type: 'git',
url: 'https://code.studioinfinity.org/glen/math5.git',
},
devDependencies: {
'@types/node': '^22.7.4',
'ts-macros': '^2.6.2',
'ts-patch': '^3.2.1',
typescript: '^5.6.2',
'undici-types': '^6.19.8',
},
dependencies: {
'tsc-module-loader': '^0.0.1',
},
}