archematics/package.json5
Glen Whitney a8707386aa chore: Update dependencies and fix build script (#15)
Reviewed-on: #15
Co-authored-by: Glen Whitney <glen@studioinfinity.org>
Co-committed-by: Glen Whitney <glen@studioinfinity.org>
2023-09-05 07:32:38 +00:00

34 lines
835 B
Plaintext

{
name: 'archematics',
version: '0.0.1',
description: 'Uncovering lost digital mathematical treasures',
scripts: {
test: 'echo "Error: no test specified" && exit 1',
build_js: 'civet --js -c src/*.civet -o public/js/.js',
build_deps: 'cp -rLT node_modules/vrml1to97 public/js/deps',
build: 'pnpm --sequential /build_/',
start: 'node public/js',
go: 'pnpm --sequential "/build|start/"',
serve: 'pnpm build && http-server',
},
packageManager: 'pnpm',
keywords: [
'math',
'browser',
'plugin',
],
author: 'Glen Whitney',
license: 'MIT',
repository: {
type: 'git',
url: 'https://code.studioinfinity.org/glen/archematics.git',
},
devDependencies: {
'@danielx/civet': '^0.6.31',
'http-server': '^14.1.1',
},
dependencies: {
vrml1to97: '^0.1.3',
},
}