-
-
Notifications
You must be signed in to change notification settings - Fork 502
/
Copy pathpackage.json
95 lines (95 loc) · 3.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "obsidian-day-planner",
"version": "0.25.0",
"description": "A plugin to help you plan your day and setup pomodoro timers",
"main": "main.js",
"scripts": {
"build": "vite build --mode=production",
"dev": "vite build --mode=development --watch",
"format": "eslint --fix src tests && stylelint --fix src/**/*.svelte && prettier --write src tests",
"lint": "prettier --check src && eslint src && stylelint src/**/*.svelte && npm run typescript && svelte-check src/",
"typescript": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"prepare": "husky install",
"commitlint": "commitlint --edit"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@tsconfig/svelte": "^5.0.4",
"@types/chroma-js": "^2.4.4",
"@types/lodash": "^4.17.7",
"@types/mdast": "^4.0.4",
"@types/node": "^22.5.5",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.6.0",
"@vitest/coverage-istanbul": "^2.1.4",
"babel": "^6.23.0",
"builtin-modules": "^4.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.23.1",
"esbuild-plugin-replace": "^1.4.0",
"esbuild-sass-plugin": "^3.3.1",
"esbuild-svelte": "^0.8.1",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-svelte": "^2.43.0",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.5",
"ignore-styles": "^5.0.1",
"jsdom": "^25.0.0",
"jsdom-global": "^3.0.2",
"knip": "^5.30.2",
"moment": "^2.29.4",
"nyc": "^17.0.0",
"obsidian-dataview": "^0.5.67",
"postcss-html": "^1.7.0",
"prettier-plugin-svelte": "^3.2.6",
"sass": "^1.80.7",
"simple-git": "^3.26.0",
"stylelint": "^16.9.0",
"stylelint-config-clean-order": "^6.1.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-standard": "^36.0.1",
"svelte-check": "^4.0.2",
"svelte-preprocess": "^6.0.3",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"vite": "^5.4.6",
"vite-plugin-filter-replace": "^0.1.13",
"vitest": "^2.1.3"
},
"overrides": {
"svelte": "$svelte"
},
"dependencies": {
"@floating-ui/dom": "^1.6.11",
"@testing-library/dom": "^10.4.0",
"chroma-js": "^3.0.0",
"fraction.js": "4.3.7",
"immer": "^10.1.1",
"lodash": "^4.17.21",
"lucide-svelte": "^0.441.0",
"mdast-util-from-markdown": "^2.0.1",
"mdast-util-to-markdown": "^2.1.0",
"moment-timezone": "^0.5.45",
"node-ical": "0.18.0",
"obsidian": "^1.6.6",
"obsidian-daily-notes-interface": "^0.9.4",
"overlayscrollbars": "^2.10.0",
"overlayscrollbars-svelte": "^0.5.4",
"svelte": "^5.0.0-next.255",
"svelte-portal": "^2.2.1",
"tinygesture": "^3.0.0",
"ts-dedent": "^2.2.0",
"ts-pattern": "^5.5.0",
"typed-assert": "^1.0.9"
}
}