generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.29 KB
/
package.json
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
{
"name": "psi-azdo-sync",
"version": "1.0.0",
"description": "Obsidian plugin to sync Azure DevOps with your vault.",
"keywords": [
"obsidian",
"plugin",
"azure",
"devops",
"sync"
],
"author": {
"name": "Kevin Cefalu",
"email": "[email protected]",
"url": "https://www.psibitdev.com/"
},
"homepage": "https://github.com/kevinCefalu/obsidian-azdo-sync",
"repository": {
"type": "git",
"url": "https://github.com/kevinCefalu/obsidian-azdo-sync.git"
},
"bugs": {
"url": "https://github.com/kevinCefalu/obsidian-azdo-sync/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.7.1",
"@typescript-eslint/eslint-plugin": "6.7.3",
"@typescript-eslint/parser": "6.7.3",
"builtin-modules": "3.3.0",
"esbuild": "0.19.4",
"esbuild-copy-static-files": "^0.1.0",
"obsidian": "latest",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"dependencies": {
"azure-devops-node-api": "^12.1.0",
"mustache": "^4.2.0"
},
"main": "main.js",
"scripts": {
"dev": "node scripts/build.mjs",
"build": "tsc -noEmit -skipLibCheck && node --no-warnings scripts/build.mjs production",
"version": "node scripts/bumpVersion.mjs && git add src/assets/manifest.json src/assets/versions.json"
}
}