You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
466 B
17 lines
466 B
{
|
|
"name": "libmonoformat",
|
|
"module": "src/index.ts",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build_monoformat": "bun build src/browser.ts --target browser --outfile public/mono-display.js",
|
|
"build_web": "bun build src/web.ts --target browser --outfile public/web.js",
|
|
"build": "bun build_monoformat && bun build_web",
|
|
"test": "bun test"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|
|
|