46 lines
992 B
JSON
46 lines
992 B
JSON
{
|
|
"name": "effect-fc",
|
|
"description": "Write React function components with Effect",
|
|
"version": "0.2.1",
|
|
"type": "module",
|
|
"files": [
|
|
"./README.md",
|
|
"./dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "git+https://github.com/Thiladev/effect-fc.git"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./*": [
|
|
{
|
|
"types": "./dist/*/index.d.ts",
|
|
"default": "./dist/*/index.js"
|
|
},
|
|
{
|
|
"types": "./dist/*.d.ts",
|
|
"default": "./dist/*.js"
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint:tsc": "tsc --noEmit",
|
|
"lint:biome": "biome lint",
|
|
"pack": "npm pack",
|
|
"clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo",
|
|
"clean:dist": "rm -rf dist",
|
|
"clean:modules": "rm -rf node_modules"
|
|
},
|
|
"peerDependencies": {
|
|
"@types/react": "^19.2.0",
|
|
"effect": "^3.19.0",
|
|
"react": "^19.2.0"
|
|
}
|
|
}
|