-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
129 lines (129 loc) · 2.93 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "llm-strings",
"version": "1.6.0",
"packageManager": "pnpm@11.1.1",
"description": "Parse and build LLM connection strings — like database URLs, but for LLM APIs",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./parse": {
"import": {
"types": "./dist/parse.d.ts",
"default": "./dist/parse.js"
},
"require": {
"types": "./dist/parse.d.cts",
"default": "./dist/parse.cjs"
}
},
"./normalize": {
"import": {
"types": "./dist/normalize.d.ts",
"default": "./dist/normalize.js"
},
"require": {
"types": "./dist/normalize.d.cts",
"default": "./dist/normalize.cjs"
}
},
"./validate": {
"import": {
"types": "./dist/validate.d.ts",
"default": "./dist/validate.js"
},
"require": {
"types": "./dist/validate.d.cts",
"default": "./dist/validate.cjs"
}
},
"./ai-sdk": {
"import": {
"types": "./dist/ai-sdk.d.ts",
"default": "./dist/ai-sdk.js"
},
"require": {
"types": "./dist/ai-sdk.d.cts",
"default": "./dist/ai-sdk.cjs"
}
},
"./providers": {
"import": {
"types": "./dist/providers.d.ts",
"default": "./dist/providers.js"
},
"require": {
"types": "./dist/providers.d.cts",
"default": "./dist/providers.cjs"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json && node scripts/copy-dcts.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm run build && pnpm run test"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"keywords": [
"llm",
"connection-string",
"url",
"openai",
"anthropic",
"google",
"bedrock",
"mistral",
"cohere",
"groq",
"ai",
"parser",
"validation",
"normalize",
"typescript"
],
"homepage": "https://github.com/justsml/llm-strings#readme",
"bugs": {
"url": "https://github.com/justsml/llm-strings/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justsml/llm-strings.git"
},
"devDependencies": {
"@biomejs/biome": "^2.5.3",
"@vitest/coverage-v8": "^4.1.10",
"prettier": "^3.9.4",
"terser": "^5.49.0",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}