generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·68 lines (68 loc) · 1.76 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
63
64
65
66
67
68
{
"name": "obsidian-steemit",
"version": "0.4.4",
"description": "A plugin for publishing Obsidian documents to Steemit. (https://steemit.com)",
"main": "main.js",
"scripts": {
"bdd": "jest -i --watch --no-cache",
"test": "jest",
"lint": "eslint --fix",
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && 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"
},
"standard-version": {
"t": ""
},
"engines": {
"node": ">=20",
"pnpm": ">=8.15.0",
"yarn": "please use pnpm",
"npm": "please use pnpm"
},
"keywords": [
"steem",
"steemit",
"obsidian",
"plugin"
],
"author": "anpigon",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"builtin-modules": "^3.3.0",
"dsteem": "^0.11.3",
"esbuild": "0.14.47",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"obsidian": "^1.4.11",
"prettier": "^3.1.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"tslib": "2.6.2",
"typescript": "5.3.3"
}
}