-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.45 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
{
"name": "obsidian-homepage",
"version": "4.0.7",
"description": "Open a specified note, canvas, or workspace upon launching Obsidian, or set it for quick access later.",
"main": "main.js",
"scripts": {
"dev": "node build.mjs",
"build": "node build.mjs production",
"test": "node build.mjs test"
},
"keywords": [],
"author": "novov",
"license": "MIT",
"dependencies": {
"obsidian": "^1.4.10",
"obsidian-daily-notes-interface": "^0.9.4"
},
"devDependencies": {
"@jgoz/esbuild-plugin-typecheck": "^3.0.2",
"esbuild": "^0.17.0",
"esbuild-plugin-copy": "^2.1.1",
"opener": "^1.5.2",
"tslib": "^2.3.0",
"typescript": "^5.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"env": { "node": true },
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parserOptions": { "sourceType": "module" },
"rules": {
"no-case-declarations": "off",
"no-unused-vars": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": [
"error", { "args": "none" }
]
}
}
}