-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.47 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@jaex/dstsx",
"version": "0.1.3",
"description": "A 1:1 TypeScript alternative to DSPy — Declarative Self-improving Language Programs",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run build",
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests --ext .ts",
"format": "prettier --write .",
"typecheck": "tsc --noEmit",
"docs": "typedoc",
"serve-docs": "npx serve _docs"
},
"keywords": [
"dspy",
"llm",
"language-model",
"prompt-optimization",
"few-shot",
"chain-of-thought",
"react",
"typescript"
],
"license": "MIT",
"author": "Psyborg",
"repository": {
"type": "git",
"url": "git+https://github.com/Psyborgs-git/DSTsx.git"
},
"bugs": {
"url": "https://github.com/Psyborgs-git/DSTsx/issues"
},
"homepage": "https://github.com/Psyborgs-git/DSTsx#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^25.3.3",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"tsup": "^8.0.2",
"typedoc": "^0.25.12",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
},
"peerDependencies": {
"@anthropic-ai/sdk": ">=0.21",
"@google/generative-ai": ">=0.7",
"@pinecone-database/pinecone": ">=2",
"@qdrant/js-client-rest": ">=1",
"chromadb": ">=1",
"cohere-ai": ">=7",
"openai": ">=4",
"weaviate-client": ">=3"
},
"peerDependenciesMeta": {
"openai": {
"optional": true
},
"@anthropic-ai/sdk": {
"optional": true
},
"cohere-ai": {
"optional": true
},
"@google/generative-ai": {
"optional": true
},
"@pinecone-database/pinecone": {
"optional": true
},
"weaviate-client": {
"optional": true
},
"chromadb": {
"optional": true
},
"@qdrant/js-client-rest": {
"optional": true
}
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": true,
"sourcemap": true,
"clean": true,
"splitting": false
}
}