-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "obsidian-plugin-prettier",
"version": "2.0.0",
"description": "Format your notes with Prettier and custom formatting options.",
"main": "dist/main.js",
"scripts": {
"build": "rollup --config rollup.config.ts --configPlugin esbuild",
"dev": "rollup --config rollup.config.ts --configPlugin esbuild --watch",
"test": "vitest"
},
"keywords": [
"obsidian",
"plugin",
"prettier"
],
"author": {
"name": "GoodbyeNJN",
"email": "[email protected]",
"url": "https://github.com/GoodbyeNJN"
},
"license": "MIT",
"dependencies": {
"ignore": "^7.0.3",
"prettier": "^3.4.2",
"remeda": "^2.19.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.2",
"@types/node": "^22.10.7",
"dotenv": "^16.4.7",
"eslint": "^9.18.0",
"eslint-config-goodbyenjn": "^3.1.2",
"fast-glob": "^3.3.3",
"jsx": "link:jsx",
"obsidian": "1.7.2",
"rollup": "^4.30.1",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"type-fest": "^4.32.0",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.1",
"zx": "^8.3.0"
},
"obsidian": {
"id": "prettier",
"name": "Prettier",
"isDesktopOnly": false,
"minAppVersion": "0.10.12"
},
"pnpm": {
"patchedDependencies": {
"prettier": "scripts/patches/prettier.patch"
}
}
}