-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.35 KB
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
{
"name": "replace-commands",
"version": "1.0.1",
"description": "Preconfigure custom search and replace actions using plain text or regex to quickly modify selections or documents.",
"main": "main.js",
"type": "module",
"scripts": {
"validate": "npm run check-format && npm run lint && npm run test",
"dev": "node esbuild.config.mjs",
"build": "npm run validate && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,js,css}\" styles.css --config .prettierrc",
"check-format": "prettier --check \"src/**/*.{ts,js,css}\" styles.css --config .prettierrc",
"test": "vitest run"
},
"keywords": [
"Obsidian plugin",
"Prettier"
],
"license": "0-BSD",
"dependencies": {
"obsidian": "1.13.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.2.0",
"esbuild": "^0.28.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-obsidianmd": "^0.4.1",
"globals": "^17.9.0",
"jiti": "^2.7.0",
"prettier": "^3.9.6",
"prettier-plugin-css-order": "^2.2.0",
"tslib": "^2.8.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.66.0",
"vitest": "^4.1.10"
},
"allowScripts": {
"esbuild@0.28.1": true
}
}