-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.79 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
{
"name": "gemini-scribe",
"version": "4.11.0",
"description": "Gemini Scribe, allows you to interact with the model and use your notes as context.",
"main": "main.js",
"types": "src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"default": "./main.js"
}
},
"scripts": {
"generate-refs": "node scripts/generate-help-references.mjs",
"dev": "npm run generate-refs && node esbuild.config.mjs",
"build": "npm run generate-refs && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"typecheck:test": "tsc --noEmit --skipLibCheck --project tsconfig.test.json",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"postversion": "git push && git push --follow-tags",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:actions": "node scripts/check-action-pins.mjs",
"lint:cycles": "madge --circular --extensions ts src",
"knip": "knip",
"install:test-vault": "node scripts/install-test-vault.mjs",
"translate": "node scripts/translate.mjs",
"test": "npm run generate-refs && vitest run",
"test:watch": "npm run generate-refs && vitest",
"prepare": "husky",
"eval": "node evals/run.mjs",
"eval:compare": "node evals/lib/compare.mjs",
"eval:bless": "node evals/lib/bless.mjs",
"eval:calibrate-extract": "node evals/calibrate-extract.mjs",
"eval:calibrate-judge": "node evals/calibrate-judge.mjs",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^2.0.1",
"@google/genai": "^2.11.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"@types/node": "^26.1.1",
"@typescript-eslint/parser": "^8.63.0",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.5",
"builtin-modules": "5.3.0",
"codemirror-companion-extension": "^0.0.11",
"esbuild": "0.28.1",
"esbuild-plugin-alias": "^0.2.1",
"eslint": "^10.7.0",
"eslint-plugin-obsidianmd": "^0.4.1",
"handlebars": "^4.7.9",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"knip": "^6.26.0",
"lint-staged": "^17.0.8",
"madge": "^8.0.0",
"obsidian": "latest",
"prettier": "^3.9.5",
"tslib": "2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vitepress": "^1.6.4",
"vitest": "^4.1.5"
},
"dependencies": {
"@allenhutchison/gemini-utils": "^1.2.0",
"@codemirror/merge": "^6.12.2",
"@types/turndown": "^5.0.6",
"ollama": "^0.6.3",
"turndown": "^7.2.4"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.ts": "eslint --fix"
},
"overrides": {
"esbuild": "0.28.1",
"madge": {
"typescript": "$typescript"
},
"protobufjs": "^7.6.5",
"ip-address": "^10.1.1"
}
}