Files
effect-docker/packages/effect-docker/package.json
Julien Valverdé 3e30179370
Some checks failed
Lint / lint (push) Failing after 11s
Working codegen
2026-02-03 14:28:23 +01:00

53 lines
1.2 KiB
JSON

{
"name": "effect-docker",
"description": "Effect-based client to talk to the Docker API",
"version": "0.1.0",
"type": "module",
"files": [
"./README.md",
"./dist"
],
"license": "MIT",
"repository": {
"url": "git+https://github.com/Thiladev/effect-docker.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"
},
"devDependencies": {
"@effect/platform-bun": "^0.87.1",
"@effect/platform-node": "^0.104.1",
"openapi-to-effect": "^0.9.3",
"prettier-plugin-jsdoc": "^1.8.0",
"tsx": "^4.21.0",
"undici": "^7.19.0"
},
"peerDependencies": {
"@effect/platform": "^0.94.2",
"effect": "^3.19.0"
}
}