| 1234567891011 |
- {
- "devDependencies": {
- "esbuild": "~0.20",
- "typescript": "~5"
- },
- "scripts": {
- "dev": "npm run check && npm build",
- "check": "tsc index.ts",
- "build": "esbuild index.ts --bundle --platform=browser --tsconfig=tsconfig.json --analyze=verbose --outfile=index.js"
- }
- }
|