forked from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "obsidian-bulk-rename",
"version": "0.5.2",
"description": "Purpose of this plugin rename files based on pattern",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "jest ./src",
"test:watch": "jest ./src --watch",
"version": "node version-bump.mjs && git add manifest.json versions.json && git push origin --tags",
"tags": "git push origin --tags"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"@popperjs/core": "^2.11.2",
"xregexp": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"alias-hq": "^5.4.0",
"builtin-modules": "3.3.0",
"esbuild": "0.15.5",
"esbuild-jest": "^0.5.0",
"eslint-plugin-jest": "^26.8.7",
"jest": "29.0.1",
"obsidian": "latest",
"prettier": "2.7.1",
"ts-jest": "^28.0.8",
"tslib": "2.4.0",
"typescript": "4.8.2"
}
}