generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
62 lines (62 loc) · 1.9 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.7.5",
"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": ">= 20",
"yarn": "please use pnpm",
"npm": "please use pnpm",
"pnpm": ">= 9.0.0"
},
"scripts": {
"dev": "node --experimental-json-modules esbuild.config.mjs",
"test": "jest",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"lint": "pnpm format:check && eslint . --ext .ts && tsc --noEmit -skipLibCheck",
"lint:fix": "pnpm format && eslint . --ext .ts --fix",
"build": "pnpm 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",
"deploy:pages": "gh-pages -d pages"
},
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"builtin-modules": "^4.0.0",
"esbuild": "0.20.2",
"eslint": "^8.57.0",
"gh-pages": "^4.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"obsidian": "latest",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "2.6.2",
"typescript": "5.1.6"
}
}