generated from brianrodri/obsidian-preact-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.81 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
{
"name": "objo",
"description": "Bring Bullet Journal practices to your Obsidian Vault",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"main": "dist/main.js",
"scripts": {
"build": "tsc && vite build",
"clean": "rm -rf node_modules/ dist/ coverage/ docs/",
"commitlint": "commitlint --edit",
"docs": "typedoc src/main.tsx --plugin typedoc-plugin-coverage --out docs/ --excludeExternals --excludePrivate --excludeProtected",
"hotreload": "git submodule init && git submodule update && vite build --mode development --outDir ./test-vault/.obsidian/plugins/objo/ --watch",
"format": "prettier --write .",
"lint": "eslint .",
"prepare": "husky",
"test": "vitest run",
"coverage": "vitest run --coverage",
"watch": "vitest --watch",
"watch-coverage": "vitest --watch --coverage"
},
"dependencies": {
"@preact/signals": "^2.0.1",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"obsidian-dataview": "^0.5.67",
"preact": "^10.26.2",
"react": "npm:@preact/compat",
"react-dom": "npm:@preact/compat"
},
"//devDependencies": {
"eslint": "TODO(preactjs/eslint-config-preact#28): upgrade to ESLint v9"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@preact/preset-vite": "^2.10.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/preact": "^3.2.4",
"@types/lodash": "^4.17.15",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitest/coverage-v8": "^3.0.6",
"eslint": "^9.20.1",
"eslint-config-preact": "github:brianrodri/eslint-config-preact#eslint-v9",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.8.2",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.15.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"obsidian": "^1.8.7",
"prettier": "^3.5.1",
"semantic-release": "^24.2.3",
"semantic-release-obsidian-plugin": "^1.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.7",
"typedoc-plugin-coverage": "^3.4.1",
"typescript": "^5.7.3",
"utility-types": "^3.11.0",
"vite": "^6.1.0",
"vite-plugin-static-copy": "^2.2.0",
"vitest": "^3.0.6"
},
"overrides": {
"obsidian-calendar-ui": "brianrodri/obsidian-calendar-ui"
}
}