forked from TfTHacker/obsidian42-brat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "obsidian42-brat",
"version": "1.0.1",
"description": "Beta Reviewer's Autoupdate Tool.",
"main": "main.js",
"scripts": {
"dev": "node --no-warnings esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"version": "node version-bump.mjs",
"githubaction": "node version-github-action.mjs",
"lint:check": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --fix --ext .ts,.tsx .",
"format:check": "prettier --check .",
"format:fix": "prettier --write ."
},
"author": "Justin Parra",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/parrajustin/obsidian42-brat.git"
},
"devDependencies": {
"@eslint/js": "9.2.0",
"@jest/globals": "29.7.0",
"@types/node": "14.18.33",
"@typescript-eslint/eslint-plugin": "7.8.0",
"@typescript-eslint/parser": "7.8.0",
"builtin-modules": "4.0.0",
"esbuild": "0.23.1",
"eslint": "9.10.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.1.6",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "^15.2.10",
"moment": "2.30.1",
"obsidian": "1.6.6",
"prettier": "3.2.5",
"ts-jest": "29.2.3",
"ts-node": "9.1.1",
"tslib": "2.7.0",
"typescript": "5.6.2",
"typescript-eslint": "7.8.0"
}
}