-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.85 KB
/
package.json
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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@relevanceai/chain",
"version": "0.1.13",
"private": false,
"description": "The managed, developer-first SDK for building LLM chains.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/RelevanceAI/relevance-chain-sdk.git"
},
"sideEffects": false,
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"./client": {
"types": "./dist/client.d.ts",
"import": "./dist/client.mjs",
"require": "./dist/client.js",
"node": "./dist/client.js",
"default": "./dist/client.js"
}
},
"bin": {
"relevance": "dist/bin.js"
},
"scripts": {
"prebuild": "npm run generate",
"build": "tsup",
"build:watch": "npm run prebuild && tsup --watch",
"cli:dev": "tsx src/bin",
"type-check": "tsc src/index.ts --noEmit",
"generate": "tsx src/scripts/generate.ts",
"test": "vitest",
"typecheck": "vitest typecheck"
},
"keywords": [],
"author": "Relevance AI (https://relevanceai.com)",
"license": "ISC",
"devDependencies": {
"@types/json-schema": "^7.0.11",
"@types/node": "^20.1.3",
"change-case": "^4.1.2",
"commander": "^10.0.1",
"esbuild-register": "^3.4.2",
"jiti": "^1.18.2",
"json-schema-to-typescript": "^13.0.1",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4",
"vitest": "0.31.1"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"cross-fetch": "^3.1.6",
"dotenv": "^16.0.3",
"json-schema": "^0.4.0",
"json-schema-to-ts": "^2.8.2",
"kleur": "^4.1.5",
"open": "^9.1.0",
"ora": "^6.3.0",
"tiny-invariant": "^1.3.1"
}
}