45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "effect-lens-next",
|
|
"description": "An effectful Lens type to easily manage nested state",
|
|
"version": "2.0.0-beta.101",
|
|
"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"
|
|
},
|
|
"./View": {
|
|
"types": "./dist/View.d.ts",
|
|
"default": "./dist/View.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"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": "4.0.0-beta.101"
|
|
},
|
|
"devDependencies": {
|
|
"effect": "4.0.0-beta.101"
|
|
}
|
|
}
|