-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.11 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.11 KB
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
{
"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": [
"bash -c 'npx tsc --noEmit'"
]
},
"keywords": [],
"author": "tamiroh",
"license": "MIT",
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@types/node": "^24.7.0",
"@vitest/coverage-v8": "^4.1.4",
"@vitest/eslint-plugin": "^1.6.9",
"esbuild": "0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "^17.4.0",
"husky": "^9.1.6",
"jiti": "^2.6.1",
"jsdom": "^27.1.0",
"lint-staged": "^16.2.7",
"obsidian": "latest",
"prettier": "3.8.1",
"tslib": "2.8.1",
"typescript": "5.7.2",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"dependencies": {
"ts-pattern": "^5.9.0"
}
}