-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.68 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
{
"name": "show-whitespace-cm6",
"version": "0.2.6",
"private": true,
"description": "Show leading and trailing whitespace in source mode (CodeMirror6)",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"fix": "npx @biomejs/biome check --write ./src",
"format": "npx @biomejs/biome format ./src",
"lint": "npx @biomejs/biome lint ./src",
"prebuild": "npx @biomejs/biome check ./src",
"build": "node esbuild.config.mjs production",
"postbuild": "cp -v manifest.json README.md build",
"preversion": "npm run build",
"version": "auto-changelog -p",
"brat-notes": "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run"
},
"keywords": [
"obsidian",
"obsidian-md",
"obsidian-plugin",
"obsidian-md-plugin"
],
"author": "ebullient",
"repository": "github.com:ebullient/obsidian-show-whitespace-cm6",
"license": "AGPL-3.0-only",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/codemirror": "5.60.15",
"@types/node": "^22.10.2",
"auto-changelog": "^2.5.0",
"builtin-modules": "^4.0.0",
"dotenv": "^16.4.5",
"esbuild": "0.24.2",
"esbuild-sass-plugin": "^3.3.1",
"moment": "^2.30.1",
"obsidian": "^1.7.2",
"tslib": "^2.8.1",
"typescript": "5.7.2"
},
"dependencies": {
"@codemirror/language": "https://github.com/lishid/cm-language",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.36.1"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|🧹|changelog|release|Update README).*"
}
}