Initial commit

This commit is contained in:
Ammaar Reshi
2025-01-04 14:06:53 +00:00
parent 7082408604
commit d6025af146
23760 changed files with 3299690 additions and 0 deletions

View File

@ -0,0 +1,37 @@
{
"name": "@replit/vite-plugin-runtime-error-modal",
"version": "0.0.3",
"private": false,
"devDependencies": {
"tsup": "^8.3.5",
"tsx": "^4.9.5",
"vite": "^5.4.10",
"yargs": "^17.5.1",
"@replit/tsconfig": "0.0.0"
},
"exports": {
"import": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@jridgewell/trace-mapping": "^0.3.25"
},
"//": "This is the correct way to set up a package with a `src/index.ts` root file that supports both ESM and CJS modules.",
"///": "https://johnnyreilly.com/dual-publishing-esm-cjs-modules-with-tsup-and-are-the-types-wrong",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"build": "tsup src/index.ts --external vite --format cjs,esm --dts --clean --sourcemap"
}
}