forked from bramses/chatgpt-md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.96 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
{
"name": "chatgpt-md",
"version": "3.1.0",
"description": "A seamless integration of openAIs GPT LLMs and Ollama into Obsidian.",
"main": "main.js",
"type": "module",
"private": true,
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build:analyze": "tsc -noEmit -skipLibCheck && ANALYZE=true node esbuild.config.mjs production",
"build:size": "yarn build && du -h main.js",
"analyze": "node scripts/analyze-bundle.mjs",
"build:full-analysis": "yarn build && yarn analyze",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"prepare": "husky",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"update-version": "node update-version.mjs"
},
"keywords": [],
"author": "",
"dependencies": {
"@ai-sdk/anthropic": "^3.0.41",
"@ai-sdk/google": "^3.0.24",
"@ai-sdk/openai": "^3.0.26",
"@ai-sdk/openai-compatible": "^2.0.28",
"@openrouter/ai-sdk-provider": "^2.2.3",
"ai": "6.0.79",
"zod": "4.3.6"
},
"devDependencies": {
"@codemirror/state": "6.5.0",
"@codemirror/view": "6.38.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"builtin-modules": "5.0.0",
"esbuild": "0.27.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.2.7",
"obsidian": "latest",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}