82 lines
1.9 KiB
JSON
82 lines
1.9 KiB
JSON
{
|
|
"name": "@effect/platform-node",
|
|
"type": "module",
|
|
"version": "4.0.0-beta.99",
|
|
"license": "MIT",
|
|
"description": "Platform specific implementations for the Node.js runtime",
|
|
"homepage": "https://effect.website",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Effect-TS/effect.git",
|
|
"directory": "packages/platform-node"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Effect-TS/effect/issues"
|
|
},
|
|
"tags": [
|
|
"node",
|
|
"typescript",
|
|
"algebraic-data-types",
|
|
"functional-programming"
|
|
],
|
|
"keywords": [
|
|
"node",
|
|
"typescript",
|
|
"algebraic-data-types",
|
|
"functional-programming"
|
|
],
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"sideEffects": [],
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./src/index.ts",
|
|
"./*": "./src/*.ts",
|
|
"./internal/*": null,
|
|
"./*/index": null
|
|
},
|
|
"files": [
|
|
"src/**/*.ts",
|
|
"dist/**/*.js",
|
|
"dist/**/*.js.map",
|
|
"dist/**/*.d.ts",
|
|
"dist/**/*.d.ts.map"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true,
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
".": "./dist/index.js",
|
|
"./*": "./dist/*.js",
|
|
"./internal/*": null,
|
|
"./*/index": null
|
|
}
|
|
},
|
|
"scripts": {
|
|
"codegen": "effect-utils codegen",
|
|
"build": "tsc -b tsconfig.json && pnpm babel",
|
|
"babel": "babel dist --plugins annotate-pure-calls --out-dir dist --source-maps",
|
|
"check": "tsc -b tsconfig.json",
|
|
"test": "vitest",
|
|
"coverage": "vitest --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@effect/platform-node-shared": "workspace:^",
|
|
"mime": "^4.1.0",
|
|
"undici": "^8.7.0"
|
|
},
|
|
"peerDependencies": {
|
|
"effect": "workspace:^",
|
|
"ioredis": "^5.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@testcontainers/mysql": "^11.14.0",
|
|
"@testcontainers/postgresql": "^11.14.0",
|
|
"@testcontainers/redis": "^11.14.0",
|
|
"@types/node": "^26.1.1",
|
|
"effect": "workspace:^"
|
|
}
|
|
}
|