generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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
{
"name": "obsidian-abbreviations",
"version": "1.1.1",
"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.5.0",
"@codemirror/view": "^6.36.1",
"@eslint/js": "^9.17.0",
"@types/chai": "^5.0.1",
"@types/js-yaml": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.11",
"@typescript-eslint/eslint-plugin": "8.19.0",
"@typescript-eslint/parser": "8.19.0",
"builtin-modules": "4.0.0",
"chai": "^5.1.2",
"esbuild": "0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"obsidian": "latest",
"tslib": "2.8.1",
"tsx": "^4.19.2",
"typescript": "5.7.2",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}