prototype-3x5/package.json

13 lines
337 B
JSON
Raw Normal View History

2023-08-05 03:48:50 +00:00
{
"scripts": {
"check": "tsc --noEmit",
2023-08-05 03:54:52 +00:00
"serve": "esbuild src/3x5.ts --bundle --format=iife --outfile=bundle.js --sourcemap --servedir=.",
"build": "esbuild src/3x5.ts --bundle --format=iife --outfile=bundle.js"
2023-08-05 03:48:50 +00:00
},
"devDependencies": {
"esbuild": "^0.18.17",
"jest": "^29.6.2",
"typescript": "^5.1.6"
}
}