-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.8 KB
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
{
"name": "obsidian-open-tab-settings",
"version": "2.0.0",
"description": "Add settings to open in new tab by default and prevent duplicate tabs.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"build-dev": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs development",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint src test",
"test": "run-s test:*",
"test:unit": "tsc --noEmit && mocha",
"test:e2e": "npx wdio run ./wdio.conf.mts",
"test-extra:android": "npx wdio run ./wdio.mobile.conf.mts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "^16.18.126",
"@wdio/appium-service": "^9.20.1",
"@wdio/cli": "^9.20.1",
"@wdio/local-runner": "^9.20.1",
"@wdio/mocha-framework": "^9.20.1",
"@wdio/spec-reporter": "^9.20.0",
"appium": "^3.1.1",
"appium-uiautomator2-driver": "^6.2.1",
"builtin-modules": "^5.0.0",
"chai": "^5.3.3",
"esbuild": "^0.27.0",
"eslint": "^9.39.1",
"lodash.merge": "^4.6.2",
"mocha": "^11.7.1",
"npm-run-all": "^4.1.5",
"obsidian": "latest",
"obsidian-launcher": "^2.1.6",
"obsidian-typings": "^4.63.0",
"tslib": "^2.8.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"wdio-obsidian-reporter": "^2.1.6",
"wdio-obsidian-service": "^2.1.6"
},
"dependencies": {
"monkey-around": "^3.0.0"
}
}