forked from anpigon/obsidian-book-search-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "wikidata-sidebar-plugin",
"version": "0.5.11",
"description": "A wikidata plugin",
"homepage": "https://nickynicolson.github.io/wikidata-sidebar-plugin/",
"main": "main.js",
"standard-version": {
"t": ""
},
"keywords": [
"wikidata",
"sidebar",
"obsidian",
"plugin"
],
"author": "nickynicolson",
"license": "MIT",
"engines": {
"node": ">= 16",
"yarn": ">= 1.22",
"npm": "please use yarn"
},
"scripts": {
"dev": "node --experimental-json-modules esbuild.config.mjs",
"test": "jest",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"lint": "yarn format:check && eslint . --ext .ts && tsc --noEmit -skipLibCheck",
"lint:fix": "yarn format && eslint . --ext .ts --fix",
"build": "yarn run lint && node esbuild.config.mjs production",
"release": "standard-version",
"release-test": "standard-version --dry-run",
"release-major": "standard-version --release-as major",
"release-major-test": "standard-version --dry-run --release-as major",
"release-minor": "standard-version --release-as minor",
"release-minor-test": "standard-version --dry-run --release-as minor",
"prepare": "husky install",
"deploy:pages": "gh-pages -d pages"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"builtin-modules": "^3.2.0",
"esbuild": "0.13.12",
"eslint": "^8.22.0",
"gh-pages": "^4.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"obsidian": "latest",
"prettier": "^2.7.1",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.7",
"typescript": "4.4.4"
},
"packageManager": "[email protected]"
}