-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "obsidian-switcher-plus",
"version": "5.0.0",
"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",
"scripts": {
"bundle": "rollup --bundleConfigAsCjs -c rollup.config.js",
"package-plugin": "cp -a ./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",
"dev": "onchange 'src/**/*.ts' -- run-s test lint bundle package-plugin"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-md-plugin"
],
"author": "darlal",
"license": "GPL-3.0-only",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/chance": "^1.1.6",
"@types/jest": "^29.5.14",
"@types/node": "^18.19.34",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"chance": "^1.1.12",
"electron": "^30.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.7",
"npm-run-all": "^4.1.5",
"obsidian": "^1.7.2",
"onchange": "^7.1.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"serve": "^14.2.4",
"ts-essentials": "^10.0.2",
"ts-jest": "^29.2.5",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"ts-deepmerge": "^7.0.1"
}
}