archematics/package.json5
Glen Whitney eba64648c9 feat: Convert VRML 1 files with vrml1to97
Now that the vrml1to97 package has been published, uses it to convert
  any VRML 1 files it encounters. Also uses the new x_ite module

  Resolves #12
2023-09-04 18:37:40 -07:00

34 lines
833 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 -r 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.26',
'http-server': '^14.1.1',
},
dependencies: {
vrml1to97: '^0.1.0',
},
}