generated from tamiroh/obsidian-plugin-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "obsidian-interval-timer",
"version": "0.1.0",
"description": "Interval Timer for Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"prepare": "husky install",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"lint-staged": {
"*": [
"npx prettier --write"
],
"*.{js,ts}": [
"npx eslint --fix"
],
"*.ts": [
"npx tsc --noEmit"
]
},
"keywords": [],
"author": "tamiroh",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@vitest/coverage-v8": "^2.0.5",
"builtin-modules": "4.0.0",
"esbuild": "0.23.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.8",
"obsidian": "latest",
"prettier": "3.3.3",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vitest": "^2.0.2"
},
"dependencies": {
"electron": "^33.2.1",
"moment": "^2.30.1",
"ts-pattern": "^5.5.0"
}
}