-
-
Notifications
You must be signed in to change notification settings - Fork 558
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.81 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@effect/ai-openrouter",
"type": "module",
"version": "0.8.1",
"license": "MIT",
"description": "Effect modules for working with AI apis",
"homepage": "https://effect.website",
"repository": {
"type": "git",
"url": "https://github.com/Effect-TS/effect.git",
"directory": "packages/ai/openrouter"
},
"bugs": {
"url": "https://github.com/Effect-TS/effect/issues"
},
"tags": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"keywords": [
"typescript",
"algebraic-data-types",
"functional-programming"
],
"publishConfig": {
"access": "public",
"provenance": true,
"directory": "dist",
"linkDirectory": false
},
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./*": "./src/*.ts",
"./internal/*": null
},
"scripts": {
"codegen": "build-utils prepare-v3",
"build": "pnpm build-esm && pnpm build-annotate && pnpm build-cjs && build-utils pack-v3",
"build-esm": "tsc -b tsconfig.build.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build/esm --plugins annotate-pure-calls --out-dir build/esm --source-maps",
"check": "tsc -b tsconfig.json",
"test": "vitest",
"coverage": "vitest --coverage"
},
"peerDependencies": {
"@effect/ai": "workspace:^",
"@effect/experimental": "workspace:^",
"@effect/platform": "workspace:^",
"effect": "workspace:^"
},
"devDependencies": {
"@effect/ai": "workspace:^",
"@effect/experimental": "workspace:^",
"@effect/platform": "workspace:^",
"@effect/platform-node": "workspace:^",
"@tim-smart/openapi-gen": "^0.4.10",
"effect": "workspace:^"
}
}