effect-api/package.json

42 lines
818 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": {
2024-03-14 20:53:25 +00:00
"@effect/schema": "^0.64.3",
"effect": "^2.4.6",
"fast-check": "^3.16.0",
2023-12-02 14:12:34 +00:00
"tslib": "^2.6.2"
},
"devDependencies": {
2024-03-14 20:53:25 +00:00
"typescript": "^5.4.2"
2023-12-02 14:12:34 +00:00
},
"exports": {
".": {
"types": "./dist/effect-api.d.ts",
"import": "./dist/effect-api.js"
2024-03-14 20:53:25 +00:00
},
"./Api": {
"types": "./dist/Api.d.ts",
"import": "./dist/Api.js"
2023-12-02 14:12:34 +00:00
}
}
}