-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.43 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
{
"name": "chatgpt-md",
"version": "3.2.1",
"description": "Chat with cloud and local AI providers directly in Obsidian notes.",
"main": "main.js",
"type": "module",
"private": true,
"license": "MIT",
"author": "Deniz Okcu (created by Bram Adams)",
"repository": {
"type": "git",
"url": "git+https://github.com/bramses/chatgpt-md.git"
},
"homepage": "https://github.com/bramses/chatgpt-md#readme",
"bugs": {
"url": "https://github.com/bramses/chatgpt-md/issues"
},
"engines": {
"node": ">=24"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"typecheck": "tsc --noEmit --skipLibCheck",
"build": "npm run typecheck && node esbuild.config.mjs production",
"build:analyze": "npm run typecheck && ANALYZE=true node esbuild.config.mjs production",
"build:size": "npm run build && du -h main.js",
"analyze": "node scripts/analyze-bundle.mjs",
"build:full-analysis": "npm run build && npm run analyze",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format:check": "prettier --check 'src/**/*.ts'",
"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": [
"obsidian",
"ai",
"llm",
"openai",
"anthropic",
"ollama"
],
"dependencies": {
"@ai-sdk/anthropic": "^4.0.18",
"@ai-sdk/google": "^4.0.21",
"@ai-sdk/openai": "^4.0.17",
"@ai-sdk/openai-compatible": "^3.0.14",
"@openrouter/ai-sdk-provider": "^3.0.0",
"ai": "7.0.34",
"zod": "4.4.3"
},
"devDependencies": {
"@codemirror/state": "6.5.0",
"@codemirror/view": "6.38.6",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@typescript-eslint/eslint-plugin": "^8.65.0",
"@typescript-eslint/parser": "^8.65.0",
"esbuild": "0.28.1",
"eslint": "^10.7.0",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^17.1.1",
"obsidian": "latest",
"prettier": "^3.9.6",
"ts-jest": "^29.4.12",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}