-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.41 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
{
"name": "obsidian-plugin-prettier",
"version": "1.1.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": "^6.0.2",
"prettier": "^3.3.3",
"remeda": "^2.15.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/node": "^22.7.5",
"dotenv": "^16.4.5",
"eslint": "^9.12.0",
"eslint-config-goodbyenjn": "^3.1.0",
"fast-glob": "^3.3.2",
"jsx": "link:jsx",
"obsidian": "1.7.2",
"rollup": "^4.24.0",
"rollup-plugin-esbuild": "^6.1.1",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.2"
},
"obsidian": {
"id": "prettier",
"name": "Prettier",
"isDesktopOnly": false,
"minAppVersion": "0.10.12"
}
}