-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.19 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.19 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
{
"name": "obsidian-linear-sync-plugin",
"version": "1.0.0",
"description": "Automatic bidirectional sync between Obsidian Kanban boards and Linear issues with intelligent template-based file generation",
"main": "main.js",
"packageManager": "pnpm@10.0.0",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "pnpm typecheck && node esbuild.config.mjs production",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"obsidian",
"linear",
"sync",
"kanban",
"project-management"
],
"author": "Samuel Ho",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.6.2",
"builtin-modules": "^5.0.0",
"esbuild": "0.25.10",
"eslint": "9",
"jest": "^30.2.0",
"obsidian": "^1.10.0",
"ts-jest": "^29.4.4",
"tslib": "2.8.1",
"typescript": "5.9.3",
"typescript-eslint": "^8.45.0"
},
"dependencies": {
"@linear/sdk": "^60.0.0"
}
}