generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
67 lines (67 loc) · 1.84 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
{
"name": "obsidian-imgur-plugin",
"description": "This plugin uploads images from your clipboard to imgur.com and embeds uploaded image to your note",
"main": "main.js",
"type": "module",
"private": true,
"scripts": {
"dev": "node scripts/dev.js",
"test": "vitest --coverage",
"build": "tsc -noEmit -skipLibCheck && node scripts/esbuild.build.js production",
"prepare": "husky",
"commit": "git-cz",
"test:e2e": "wdio run ./test/e2e/wdio.conf.ts",
"test:eslint": "eslint --cache"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"keywords": [
"obsidian.md",
"imgur.com"
],
"author": "Kirill Gavrilov",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@commitlint/cz-commitlint": "19.5.0",
"@types/node": "22.8.4",
"@vitest/coverage-v8": "2.1.4",
"@vitest/ui": "2.1.4",
"@wdio/cli": "9.2.6",
"@wdio/globals": "9.2.6",
"@wdio/local-runner": "9.2.6",
"@wdio/mocha-framework": "9.2.5",
"@wdio/spec-reporter": "9.2.2",
"commitizen": "4.3.1",
"electron": "33.0.2",
"enquirer": "2.4.1",
"esbuild": "0.24.0",
"eslint": "9.13.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-wdio": "9.0.8",
"expect-webdriverio": "5.0.3",
"globals": "15.11.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"obsidian": "1.7.2",
"obsidian-utils": "0.10.2",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"tslib": "2.8.0",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.12.2",
"vitest": "2.1.4",
"wdio-electron-service": "7.1.0",
"webdriverio": "9.2.6"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write",
"*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}