-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 1.2 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
{
"name": "settings-search",
"version": "1.3.10",
"description": "Globally search settings in Obsidian.md",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"web:dev": "set NODE_OPTIONS=--openssl-legacy-provider && webpack --config webpack.dev.js -w",
"web:build": "webpack",
"rollup:dev": "rollup --config rollup.config-dev.js -w",
"rollup:build": "rollup --config rollup.config.js",
"test": "jest",
"release": "standard-version",
"push": "git push --follow-tags origin"
},
"standard-version": {
"t": "",
"releaseCommitMessageFormat": "Settings Search Release: v{{currentTag}}"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@types/node": "^14.17.21",
"builtin-modules": "^3.2.0",
"dotenv": "^10.0.0",
"esbuild": "^0.13.15",
"monkey-around": "^2.3.0",
"obsidian": "latest",
"standard-version": "^9.3.2",
"tslib": "^2.3.0",
"typescript": "^4.2.4"
}
}