-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.01 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ovm",
"description": "Obsidian Vaults Manager",
"type": "commonjs",
"version": "0.4.3",
"license": "MIT",
"author": "Masoud Ghorbani",
"homepage": "https://github.com/msudgh/ovm",
"bugs": "https://github.com/msudgh/ovm/issues",
"repository": "https://github.com/msudgh/ovm.git",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.release.json",
"build:watch": "shx rm -rf dist && tsc -p tsconfig.release.json -w",
"build:release": "shx rm -rf dist && tsc -p tsconfig.release.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier -c \"**/*.{ts,json,md}\"",
"format:write": "prettier -w \"**/*.{ts,json,md}\"",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && pnpm run build:release && pnpm run test:unit",
"test:unit": "pnpm run build && mocha",
"test:coverage": "nyc npm run test:unit"
},
"keywords": [
"obsidian",
"vaults",
"cli",
"oclif"
],
"bin": {
"ovm": "./bin/run.js"
},
"engines": {
"node": ">=18.0.0"
},
"oclif": {
"bin": "ovm",
"dirname": "ovm",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {
"vaults": {
"description": "Perform tasks on vaults"
},
"plugins": {
"description": "Manage plugins of the vaults"
},
"reports": {
"description": "Reports on vaults"
}
}
},
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"dependencies": {
"@inquirer/core": "^9.0.10",
"@inquirer/prompts": "^5.3.8",
"@oclif/core": "^4.0.17",
"@oclif/plugin-help": "^6.2.8",
"async": "^3.2.5",
"date-fns": "^3.6.0",
"fast-folder-size": "^2.2.0",
"filesize": "^10.1.4",
"glob": "^11.0.0",
"inquirer": "^10.1.8",
"node-fetch-cache": "^4.1.2",
"obsidian-utils": "^0.10.2",
"winston": "^3.14.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.0.8",
"@total-typescript/ts-reset": "^0.5.1",
"@types/async": "^3.2.24",
"@types/cacache": "^17.0.2",
"@types/chai": "^4.3.17",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.7",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.1.0",
"@types/sinon": "^17.0.3",
"@types/validator": "^13.12.0",
"chai": "^5.1.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"mocha": "^10.7.3",
"mock-fs": "^5.2.0",
"nyc": "^17.0.0",
"obsidian": "1.6.6",
"oclif": "^4.14.15",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sinon": "^18.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1"
},
"pnpm": {
"overrides": {
"fast-xml-parser@<4.4.1": ">=4.4.1"
}
}
}