generated from brianrodri/obsidian-preact-plugin-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 3.32 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
{
"name": "objo",
"description": "Bring Bullet Journal practices to your Obsidian Vault",
"license": "MIT",
"version": "1.0.0",
"type": "module",
"main": "dist/main.js",
"scripts": {
"audit": "npm audit && npm audit signatures",
"build": "vite build",
"build:ci": "npm run audit && npm run lint && npm run build:typescript && npm run build && npm run test:coverage && npm run build:docs",
"build:clean": "rm -rf node_modules/ dist/ coverage/ docs/",
"build:docs": "typedoc --validation",
"build:typescript": "tsc --build",
"build:watch": "vite build --watch",
"build:watch-docs": "typedoc --validation --watch",
"build:watch-typescript": "tsc --build --watch",
"commitlint": "commitlint --edit",
"lint": "eslint . && prettier --check .",
"lint:fix": "prettier --write . && eslint --fix .",
"prepare": "husky",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"test:watch-coverage": "vitest --coverage --watch"
},
"dependencies": {
"@preact/signals": "^2.0.1",
"aggregate-error": "^5.0.0",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"obsidian-dataview": "^0.5.67",
"preact": "^10.26.4",
"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.3.0",
"@eslint/js": "^9.21.0",
"@preact/preset-vite": "^2.10.1",
"@semantic-release/git": "^10.0.1",
"@testing-library/preact": "^3.2.4",
"@types/lodash": "^4.17.16",
"@types/luxon": "^3.4.2",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@typhonjs-typedoc/typedoc-theme-dmt": "^0.3.1",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/eslint-plugin": "^1.1.36",
"eslint": "^9.21.0",
"eslint-config-preact": "github:brianrodri/eslint-config-preact#eslint-v9",
"eslint-config-prettier": "^10.0.2",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-compat": "^6.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"obsidian": "^1.8.7",
"prettier": "^3.5.3",
"semantic-release": "^24.2.3",
"semantic-release-obsidian-plugin": "^1.1.0",
"tslib": "^2.8.1",
"typedoc": "^0.27.9",
"typedoc-plugin-coverage": "^3.4.1",
"typedoc-plugin-dt-links": "^1.1.14",
"typescript": "^5.8.2",
"utility-types": "^3.11.0",
"vite": "^6.2.0",
"vite-plugin-static-copy": "^2.3.0",
"vitest": "^3.0.7"
},
"overrides": {
"obsidian-calendar-ui": "brianrodri/obsidian-calendar-ui"
}
}