generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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
{
"name": "obsidian-tweaks",
"version": "0.4.0",
"description": "A small plugin that implements some sorely missed features.",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"vup": "node bin/version-bump.mjs",
"check": "tsc --noEmit --watch",
"dev": "node esbuild.config.mjs",
"lint": "eslint \"src/**/*.{ts,tsx}\" \"bin/**/*.{mjs,js,jsx,ts,tsx}\" --quiet --fix"
},
"keywords": [
"obsidian"
],
"author": "Jeppe Klitgaard",
"license": "Unlicense",
"devDependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^14.18.9",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"@yarnpkg/esbuild-plugin-pnp": "^2.0.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.14.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lodash": "^4.17.21",
"obsidian": "^0.13.21",
"prettier": "^2.5.1",
"tslib": "^2.3.1",
"tweaks": "link:./src",
"typescript": "^4.5.5"
}
}