This repository was archived by the owner on Aug 29, 2025. It is now read-only.
generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
45
46
47
48
{
"name": "obsidian-markdown-flip",
"version": "1.0.0",
"description": "A lightweight plugin to flip markdown line types with smart shortcuts",
"main": "main.js",
"packageManager": "pnpm@10.8.0",
"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",
"lint": "eslint ./src --fix && eslint ./tests --fix && tsc --noEmit --pretty",
"format": "npx prettier --write src",
"test": "jest --ci",
"test:dev": "jest --watch"
},
"keywords": [
"obsidian",
"plugin",
"markdown"
],
"author": "Jinmu Go",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.24.0",
"@types/jest": "^29.5.14",
"@types/node": "22.14.0",
"@typescript-eslint/eslint-plugin": "8.29.1",
"@typescript-eslint/parser": "8.29.1",
"builtin-modules": "5.0.0",
"esbuild": "0.25.2",
"eslint": "^9.24.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lefthook": "^1.11.8",
"obsidian": "latest",
"prettier": "^3.5.3",
"ts-jest": "^29.3.1",
"tslib": "2.4.0",
"typescript": "5.8.3",
"typescript-eslint": "^8.29.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"lefthook"
]
}
}