2023-08-28 15:33:10 +00:00
|
|
|
{
|
|
|
|
name: 'archematics',
|
2023-10-05 06:19:11 +00:00
|
|
|
version: '0.1.0',
|
2023-08-28 15:33:10 +00:00
|
|
|
description: 'Uncovering lost digital mathematical treasures',
|
|
|
|
scripts: {
|
2023-08-28 16:01:25 +00:00
|
|
|
test: 'echo "Error: no test specified" && exit 1',
|
2023-09-11 01:52:39 +00:00
|
|
|
// Obtain additional source code needed:
|
|
|
|
prebuild: 'bash tools/fetchDeps.bash',
|
|
|
|
// Use civet to create .ts files from the source...
|
|
|
|
build_ts1: 'mkdir -p tsbuild && civet -c -o tsbuild/.ts src/*.civet',
|
|
|
|
// ... but also grab other existing files:
|
|
|
|
build_ts2: 'cp -r etc/deps tsbuild',
|
|
|
|
build_ts3: 'bash tools/copyDeps.bash tsbuild/deps',
|
|
|
|
// Use the Typescript compiler to create the final .js files:
|
|
|
|
build_js: 'tsc && mkdir -p public/js && cp -r jsbuild/* public/js',
|
|
|
|
build_deps: 'bash tools/copyDeps.bash public/js/deps',
|
2023-10-10 03:17:19 +00:00
|
|
|
build_plugin: 'bash tools/makePlugin.bash archematics',
|
2023-09-05 01:50:52 +00:00
|
|
|
build: 'pnpm --sequential /build_/',
|
2023-08-29 01:29:08 +00:00
|
|
|
start: 'node public/js',
|
2023-08-28 16:01:25 +00:00
|
|
|
go: 'pnpm --sequential "/build|start/"',
|
2023-08-29 01:29:08 +00:00
|
|
|
serve: 'pnpm build && http-server',
|
2023-10-10 03:17:19 +00:00
|
|
|
clean: 'rm -rf tsbuild jsbuild public/js archematics archematics.zip',
|
2023-08-28 15:33:10 +00:00
|
|
|
},
|
|
|
|
packageManager: 'pnpm',
|
2023-08-28 16:01:25 +00:00
|
|
|
keywords: [
|
|
|
|
'math',
|
|
|
|
'browser',
|
|
|
|
'plugin',
|
|
|
|
],
|
2023-08-28 15:33:10 +00:00
|
|
|
author: 'Glen Whitney',
|
|
|
|
license: 'MIT',
|
|
|
|
repository: {
|
|
|
|
type: 'git',
|
|
|
|
url: 'https://code.studioinfinity.org/glen/archematics.git',
|
|
|
|
},
|
2023-08-28 16:01:25 +00:00
|
|
|
devDependencies: {
|
2024-02-14 05:13:57 +00:00
|
|
|
'@danielx/civet': '^0.6.72',
|
2023-11-30 23:51:59 +00:00
|
|
|
'@types/firefox-webext-browser': '^120.0.0',
|
|
|
|
'@types/jquery': '^3.5.29',
|
2023-10-10 03:17:19 +00:00
|
|
|
'@webcomponents/custom-elements': '^1.6.0',
|
2023-08-28 17:31:35 +00:00
|
|
|
'http-server': '^14.1.1',
|
2024-02-12 17:21:14 +00:00
|
|
|
rollup: '^4.10.0',
|
|
|
|
typescript: '^5.3.3',
|
2023-10-10 03:17:19 +00:00
|
|
|
'webextension-polyfill': '^0.10.0',
|
2023-08-28 16:01:25 +00:00
|
|
|
},
|
2023-09-05 01:50:52 +00:00
|
|
|
dependencies: {
|
2023-09-25 22:44:44 +00:00
|
|
|
colorsea: '^1.2.1',
|
2024-02-14 05:13:57 +00:00
|
|
|
vrml1to97: '^0.3.0',
|
2023-09-05 01:50:52 +00:00
|
|
|
},
|
2023-08-28 15:33:10 +00:00
|
|
|
}
|