61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "@effect/ai-codegen",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"description": "Code generation framework for the Effect AI providers",
|
|
"homepage": "https://effect.website",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Effect-TS/effect.git",
|
|
"directory": "packages/tools/ai-codegen"
|
|
},
|
|
"sideEffects": [],
|
|
"bin": {
|
|
"effect-ai-codegen": "./src/bin.ts"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*": "./src/*.ts",
|
|
"./bin": null,
|
|
"./main": null
|
|
},
|
|
"files": [
|
|
"src/**/*.ts",
|
|
"dist/**/*.js",
|
|
"dist/**/*.js.map",
|
|
"dist/**/*.d.ts",
|
|
"dist/**/*.d.ts.map"
|
|
],
|
|
"publishConfig": {
|
|
"provenance": true,
|
|
"bin": {
|
|
"effect-ai-codegen": "./dist/bin.js"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./*": "./dist/*.js",
|
|
"./bin": null,
|
|
"./main": 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/openapi-generator": "workspace:^",
|
|
"@effect/platform-node": "workspace:^",
|
|
"effect": "workspace:^",
|
|
"glob": "^13.0.6",
|
|
"yaml": "^2.9.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^26.1.1"
|
|
}
|
|
}
|