-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.25 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "obsidian-switcher-plus",
"version": "6.1.1",
"description": "Enhanced Quick Switcher plugin for Obsidian.md.",
"repository": {
"type": "git",
"url": "https://github.com/darlal/obsidian-switcher-plus"
},
"main": "./dist/darlal-switcher-plus/main.js",
"engines": {
"node": "22.21.1"
},
"scripts": {
"bundle": "rollup --bundleConfigAsCjs -c rollup.config.js",
"package-plugin": "copyfiles ./styles.css ./manifest.json ./versions.json ./dist/darlal-switcher-plus",
"build": "run-s lint build:fast",
"build:fast": "run-s bundle package-plugin",
"build:watch": "onchange 'src/**/*.ts' -- npm run build:fast",
"ci": "BUILD=production run-s lint test bundle package-plugin",
"lint": "eslint \"**/*.{js,ts}\"",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "serve coverage/lcov-report",
"test:perf": "jest --config jest.perf.config.js",
"test:perf:update-baseline": "UPDATE_PERF_BASELINE=true npm run test:perf",
"dev": "onchange 'src/**/*.ts' -- run-s bundle package-plugin lint test"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-md-plugin"
],
"author": "darlal",
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.3.0",
"@types/chance": "^1.1.7",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"chance": "^1.1.13",
"copyfiles": "^2.4.1",
"electron": "^37.9.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.1.0",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jest": "^29.4.5",
"jest-mock-extended": "^4.0.0",
"npm-run-all": "^4.1.5",
"obsidian": "^1.11.4",
"onchange": "^7.1.0",
"prettier": "^3.6.2",
"rollup": "^4.53.3",
"serve": "^14.2.5",
"ts-essentials": "^10.1.1",
"ts-jest": "^29.4.5",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"ts-deepmerge": "^7.0.3"
}
}