-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.01 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
{
"name": "o2",
"version": "2.2.1",
"description": "This is a plugin to make obsidian markdown syntax compatible with other markdown syntax.",
"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": "jest"
},
"keywords": [
"obsidian",
"plugin",
"jekyll"
],
"author": "haril song",
"license": "MIT",
"devDependencies": {
"@js-temporal/polyfill": "^0.4.4",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"builtin-modules": "4.0.0",
"esbuild": "0.24.0",
"eslint": "^9.16.0",
"eslint-plugin-yml": "^1.16.0",
"jest": "^29.7.0",
"obsidian": "^1.7.2",
"process": "^0.11.10",
"ts-jest": "^29.2.5",
"tslib": "2.8.1",
"typescript": "5.7.2"
}
}