39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "@replit/vite-plugin-shadcn-theme-json",
|
|
"version": "0.0.4",
|
|
"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": {
|
|
"@sinclair/typebox": "^0.33.17",
|
|
"colorjs.io": "^0.5.2",
|
|
"dedent": "^1.5.3"
|
|
},
|
|
"//": "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"
|
|
}
|
|
} |