59 lines
1.4 KiB
JSON
59 lines
1.4 KiB
JSON
{
|
|
"name": "@effect/utils",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"description": "Build tools for the repositories following the Effect standard setup",
|
|
"homepage": "https://effect.website",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Effect-TS/effect-smol.git",
|
|
"directory": "packages/tools/utils"
|
|
},
|
|
"sideEffects": [],
|
|
"bin": {
|
|
"effect-utils": "./src/bin.ts"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*": "./src/*.ts",
|
|
"./commands/*": null,
|
|
"./bin": null
|
|
},
|
|
"files": [
|
|
"src/**/*.ts",
|
|
"dist/**/*.js",
|
|
"dist/**/*.js.map",
|
|
"dist/**/*.d.ts",
|
|
"dist/**/*.d.ts.map"
|
|
],
|
|
"publishConfig": {
|
|
"provenance": true,
|
|
"bin": {
|
|
"effect-utils": "./dist/bin.js"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*": "./dist/*.js",
|
|
"./commands/*": null,
|
|
"./bin": null
|
|
}
|
|
},
|
|
"scripts": {
|
|
"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": "workspace:^",
|
|
"effect": "workspace:^",
|
|
"glob": "^13.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.1.1"
|
|
}
|
|
}
|