-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 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-plugin-prettier",
"version": "2.0.2",
"description": "Format your notes with Prettier and custom formatting options.",
"type": "module",
"main": "dist/main.js",
"scripts": {
"build": "rolldown -c",
"dev": "rolldown -w -c",
"test": "vitest",
"prepare": "scripts/prepare.ts"
},
"keywords": [
"obsidian",
"plugin",
"prettier"
],
"author": {
"name": "GoodbyeNJN",
"email": "cc@fuckwall.cc",
"url": "https://github.com/GoodbyeNJN"
},
"license": "MIT",
"dependencies": {
"@goodbyenjn/utils": "^26.2.0",
"ignore": "^7.0.5",
"prettier-mod": "link:.temp/prettier"
},
"devDependencies": {
"@goodbyenjn/configs": "^6.1.4",
"@types/node": "^25.2.1",
"eslint": "^9.39.2",
"jsx": "link:jsx",
"obsidian": "^1.11.4",
"prettier": "^3.8.1",
"rolldown": "1.0.0-rc.3",
"typescript": "^5.9.3",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"prettier": "@goodbyenjn/configs/prettier",
"obsidian": {
"id": "prettier",
"name": "Prettier",
"isDesktopOnly": false,
"minAppVersion": "0.10.12"
}
}