-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.03 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
{
"name": "obsidian-multi-cursor",
"version": "0.0.4",
"description": "Multi-cursor support plugin for Obsidian (https://obsidian.md)",
"main": "main.js",
"scripts": {
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"dev": "node esbuild.config.mjs",
"fix": "concurrently npm:fix:*",
"fix:prettier": "prettier --write .",
"lint": "concurrently npm:lint:*",
"lint:eslint": "eslint *.ts",
"lint:prettier": "prettier --check .",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"prepare": "husky"
},
"keywords": [],
"author": "Ben Selby",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"builtin-modules": "^4.0.0",
"concurrently": "^9.1.0",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"obsidian": "^1.7.2",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}