generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1012 Bytes
/
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
{
"name": "obsidian-abbreviations",
"version": "1.0.0",
"description": "Abbreviations and Acronyms",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"test": "mocha"
},
"keywords": [],
"author": "dragonish",
"license": "MIT",
"devDependencies": {
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.28.6",
"@types/chai": "^4.3.16",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.17.0",
"builtin-modules": "4.0.0",
"chai": "^5.1.1",
"esbuild": "0.23.0",
"eslint": "8",
"mocha": "^10.7.0",
"obsidian": "latest",
"tslib": "2.6.3",
"tsx": "^4.16.2",
"typescript": "5.5.4"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}