effect-api/package.json

38 lines
747 B
JSON
Raw Normal View History

2023-12-02 14:12:34 +00:00
{
"name": "effect-api",
"version": "0.1.0",
"description": "A library for defining, using and implementing HTTP JSON APIs using Effect ecosystem",
"keywords": [
"api",
"effect",
"fetch",
"http",
"json"
],
"homepage": "https://renati.me/effect-api",
"license": "MPL-2.0",
"browser": "./dist/oktaeder.js",
"repository": {
"type": "git",
"url": "https://gitea.renati.me/renati/effect-api.git"
},
"scripts": {
"build": "tsc --build"
},
"dependencies": {
"@effect/schema": "^0.51.1",
"effect": "2.0.0-next.58",
"fast-check": "^3.14.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"typescript": "^5.3.2"
},
"exports": {
".": {
"types": "./dist/effect-api.d.ts",
"import": "./dist/effect-api.js"
}
}
}