Co-authored-by: Julien Valverdé <julien.valverde@mailo.com> Reviewed-on: #1
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "effect-lens",
|
|
"description": "An effectful Lens type to easily manage nested state",
|
|
"version": "0.1.2",
|
|
"type": "module",
|
|
"files": [
|
|
"./README.md",
|
|
"./dist"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"url": "git+https://github.com/Thiladev/effect-lens.git"
|
|
},
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./Lens": {
|
|
"types": "./dist/Lens.d.ts",
|
|
"default": "./dist/Lens.js"
|
|
},
|
|
"./PropertyPath": {
|
|
"types": "./dist/PropertyPath.d.ts",
|
|
"default": "./dist/PropertyPath.js"
|
|
},
|
|
"./Subscribable": {
|
|
"types": "./dist/Subscribable.d.ts",
|
|
"default": "./dist/Subscribable.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": {
|
|
"effect": "^3.21.0"
|
|
}
|
|
}
|