math5/package.json5
Glen Whitney 047385d56b Enable testing with vitest (#13)
Resolves #12.

Co-authored-by: Jos de Jong <wjosdejong@gmail.com>
Reviewed-on: #13
Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Co-committed-by: Glen Whitney <glen@studioinfinity.org>
2024-10-28 22:34:55 +00:00

36 lines
934 B
Plaintext

{
name: 'math5',
version: '0.0.1',
description: 'Another prototype for a math core',
scripts: {
build: 'tsc && cpy etc/package.json build/ --flat',
reflect: 'node tools/reflectTypes.mjs',
refbuild: 'pnpm build && pnpm reflect',
go: 'pnpm refbuild && pnpm start',
start: 'node --experimental-loader tsc-module-loader build',
test: 'pnpm refbuild && vitest run --config etc/vitest.config.ts',
},
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.5',
'cpy-cli': '5.0.0',
typescript: '5.6.3',
'undici-types': '6.20.0',
vitest: '^2.1.3',
},
dependencies: {
'tsc-module-loader': '^0.0.1',
},
}