generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathpackage.json
68 lines (68 loc) · 1.92 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
{
"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",
"build-fast": "node scripts/esbuild.build.js production",
"prepare": "husky",
"commit": "git-cz",
"pretest:e2e": "run-s build-fast",
"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.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@types/node": "22.12.0",
"@vitest/coverage-v8": "3.0.4",
"@vitest/ui": "3.0.4",
"@wdio/cli": "9.7.1",
"@wdio/globals": "9.7.1",
"@wdio/local-runner": "9.7.1",
"@wdio/mocha-framework": "9.6.4",
"@wdio/spec-reporter": "9.6.3",
"commitizen": "4.3.1",
"electron": "32.2.5",
"enquirer": "2.4.1",
"esbuild": "0.24.2",
"eslint": "9.19.0",
"eslint-plugin-perfectionist": "4.7.0",
"eslint-plugin-wdio": "9.6.0",
"expect-webdriverio": "5.0.5",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"npm-run-all2": "7.0.2",
"obsidian": "1.7.2",
"obsidian-utils": "0.10.2",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-eslint": "8.22.0",
"vitest": "3.0.4",
"wdio-electron-service": "7.3.1",
"webdriverio": "9.7.1"
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write",
"*.ts": "eslint --cache --fix"
},
"packageManager": "[email protected]"
}