Files
remote-data-fp-ts/package.json
2026-02-02 08:45:51 +00:00

47 lines
1.3 KiB
JSON

{
"name": "remote-data-fp-ts",
"private": true,
"version": "0.0.1",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./remote-data-fp-ts": {
"types": "./dist/remote-data-fp-ts.d.ts",
"import": "./dist/remote-data-fp-ts.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build && tsc --emitDeclarationOnly --declaration --noEmit false --outDir dist/es && tsc --emitDeclarationOnly --declaration --noEmit false --outDir dist/cjs --module CommonJS --moduleResolution Node",
"build2": "tsup ./src/index.ts ./src/remote-data-fp-ts.ts --dts --format esm,cjs",
"build3-vite-rollup-plugin": "vite build",
"preview": "vite preview"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@rollup/plugin-typescript": "11.1.6",
"fp-ts": "^2.16.8",
"publint": "0.2.9",
"tslib": "2.6.3",
"tsup": "^8.2.3",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-checker": "0.7.2",
"vite-plugin-dts": "4.0.0-beta.1",
"vite-plugin-externalize-deps": "^0.8.0"
},
"peerDependencies": {
"fp-ts": "^2.16.8"
}
}