-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "interlinear",
"version": "0.2.4",
"description": "Interlinear — reading-mode interlinear translation for Obsidian: render translations alongside the original, never modifying your notes. BYOK (DeepSeek or any OpenAI-compatible endpoint).",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc --noEmit --skipLibCheck && node esbuild.config.mjs production",
"typecheck": "tsc --noEmit --skipLibCheck",
"test": "vitest run",
"test:watch": "vitest",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"interlinear",
"translation",
"bilingual",
"deepseek"
],
"author": "Yupeng Lin",
"license": "MIT",
"homepage": "https://github.com/linyp/obsidian-interlinear#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/linyp/obsidian-interlinear.git"
},
"bugs": {
"url": "https://github.com/linyp/obsidian-interlinear/issues"
},
"devDependencies": {
"@types/node": "^25.9.2",
"esbuild": "^0.28.0",
"obsidian": "^1.13.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}