generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.18 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
{
"name": "obsidian-control-characters",
"version": "0.3.0",
"description": "Show control/non-printing characters in edit mode",
"main": "build/main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint . --ext .ts",
"lint-css": "stylelint src/styles.scss"
},
"keywords": [],
"author": "Johannes Theiner",
"license": "GPL-3.0",
"devDependencies": {
"@codemirror/state": "6.0.1",
"@codemirror/view": "6.0.1",
"@codemirror/commands": "6.0.0",
"@codemirror/search": "6.0.0",
"@codemirror/language": "https://github.com/lishid/cm-language",
"@types/node": "16.11.6",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@typescript-eslint/parser": "5.2.0",
"builtin-modules": "3.2.0",
"esbuild": "0.13.12",
"eslint": "8.12.0",
"obsidian": "0.15.0",
"tslib": "2.3.1",
"typescript": "4.4.4",
"sass": "1.49.9",
"stylelint-config-standard": "25.0.0",
"stylelint-config-standard-scss": "3.0.0",
"postcss": "8.4.12",
"autoprefixer": "10.4.4",
"cssnano": "5.1.7",
"cssnano-preset-default": "5.2.7"
}
}