forked from anpigon/obsidian-book-search-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
{
"name": "obsidian-book-search-plugin",
"version": "0.5.10",
"description": "This is a plugin to help you create book notes.",
"homepage": "https://anpigon.github.io/obsidian-book-search-plugin/",
"main": "main.js",
"standard-version": {
"t": ""
},
"keywords": [
"book",
"book note",
"obsidian",
"plugin"
],
"author": "anpigon",
"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": {
"@popperjs/core": "^2.11.5",
"@types/jest": "^28.1.6",
"@types/node": "^16.11.6",
"@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",
"jest-environment-jsdom": "^28.1.3",
"obsidian": "latest",
"prettier": "^2.7.1",
"standard-version": "^9.3.2",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"tslib": "2.3.1",
"typescript": "4.4.4"
},
"packageManager": "[email protected]"
}