-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
{
"name": "prompt-mixer-ollama-connector",
"version": "1.0.10",
"description": "",
"type": "module",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint '**/*.{js,ts}' --quiet",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"format": "prettier '**/*.{js,ts,json,md}' --write",
"format:check": "prettier '**/*.{js,ts,json,md}' --check",
"type:check": "tsc --noEmit",
"check": "npm run lint && npm run format:check && npm run type:check",
"prepare": "husky"
},
"keywords": [
"LLM",
"Ollama",
"Connector",
"Prompt Mixer",
"Prompts",
"LLM"
],
"author": "Prompt Mixer",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.12.2",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"eslint": "9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"tslib": "2.8.1",
"typescript": "5.5.4"
},
"dependencies": {
"esbuild-plugin-copy": "^2.1.1",
"ollama": "^0.5.9"
}
}