forked from nothingislost/obsidian-query-control
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
32 lines (32 loc) · 1.29 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
{
"name": "obsidian-query-control",
"version": "0.7.12",
"description": "An experimental Obsidian plugin that adds additional control to queries",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"postinstall": "chmod +x scripts/tag-version.sh",
"release": "node scripts/updateManifestVersion.js && git add manifest.json && git commit --amend --no-edit && npm run tag-version",
"release:patch": "npm version patch -m \"chore(release): %s\" && node scripts/updateManifestVersion.js && git add manifest.json && git commit --amend --no-edit && npm run tag-version",
"release:minor": "npm version minor -m \"chore(release): %s\" && node scripts/updateManifestVersion.js && git add manifest.json && git commit --amend --no-edit && npm run tag-version",
"tag-version": "./scripts/tag-version.sh"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.8.7",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"builtin-modules": "^4.0.0",
"esbuild": "~0.15.17",
"monkey-around": "^3.0.0",
"obsidian": "^1.6.6",
"tslib": "^2.8.0",
"typescript": "^5.6.3"
},
"dependencies": {
"i18next": "^23.16.3"
}
}