Merge commit '36c66dd290d3ce6eb1ccd310d0c658d4a32bb8eb' as 'repos/effect'
This commit is contained in:
58
repos/effect/packages/tools/utils/package.json
Normal file
58
repos/effect/packages/tools/utils/package.json
Normal file
@@ -0,0 +1,58 @@
|
||||
{
|
||||
"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.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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user