generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.83 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
{
"name": "obsidian-bookshelf",
"version": "0.1.0",
"description": "Manage your books and reading progress in Obsidian",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "npm run lint:eslint && npm run lint:lit",
"lint:eslint": "npx eslint --max-warnings=0",
"lint:lit": "npx lit-analyzer --strict \"src/**/*.ts\"",
"style:check": "npx prettier . --check",
"style:format": "npx prettier . --write",
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"test:mutation": "npx stryker run",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build"
},
"keywords": [
"obsidian"
],
"author": "Philip Weinke <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-runtime": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@chromatic-com/storybook": "^3.2.4",
"@eslint/compat": "^1.2.6",
"@eslint/js": "^9.19.0",
"@storybook/addon-essentials": "^8.5.3",
"@storybook/addon-interactions": "^8.5.3",
"@storybook/blocks": "^8.5.3",
"@storybook/html": "^8.5.3",
"@storybook/html-vite": "^8.5.3",
"@storybook/test": "^8.5.3",
"@stryker-mutator/jest-runner": "^8.7.1",
"@stryker-mutator/typescript-checker": "^8.7.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/user-event": "^14.6.1",
"@types/luxon": "^3.4.2",
"@types/node": "^22",
"babel-jest": "^29.7.0",
"builtin-modules": "^4.0.0",
"esbuild": "^0.25",
"esbuild-copy-files-plugin": "^1.2.1",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lit-analyzer": "^2.0.3",
"moment": "^2.30.1",
"obsidian": "latest",
"prettier": "3.4.2",
"radashi": "^12.3.4",
"shadow-dom-testing-library": "^1.11.3",
"storybook": "^8.5.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.22.0"
},
"engines": {
"node": "^20"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"dependencies": {
"chart.js": "^4.4.7",
"chartjs-adapter-luxon": "^1.3.1",
"lit": "^3.2.1",
"luxon": "^3.5.0"
}
}