29 lines
652 B
Plaintext
29 lines
652 B
Plaintext
{
|
|
name: 'archematics',
|
|
version: '0.0.1',
|
|
description: 'Uncovering lost digital mathematical treasures',
|
|
scripts: {
|
|
test: 'echo "Error: no test specified" && exit 1',
|
|
build: 'civet --js -c src/*.civet -o obj/.js',
|
|
start: 'node obj',
|
|
go: 'pnpm --sequential "/build|start/"',
|
|
serve: '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',
|
|
},
|
|
}
|