forked from Zachatoo/obsidian-css-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "obsidian-css-editor",
"version": "1.1.0",
"description": "Edit CSS files within Obsidian.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"test": "node esbuild.config.mjs test",
"version": "npx ts-node --esm external/obsidian-plugin-scripts/version-bump.mts && git add package.json package-lock.json manifest.json versions.json"
},
"keywords": [
"obsidian-plugin"
],
"author": "Zachatoo",
"license": "MIT",
"devDependencies": {
"@codemirror/commands": "^6.2.4",
"@codemirror/lang-css": "^6.2.0",
"@codemirror/lint": "^6.2.1",
"@codemirror/search": "^6.4.0",
"@types/chai": "^4.3.5",
"@types/chai-as-promised": "^7.1.5",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"esbuild": "0.17.3",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^4.9.0"
},
"dependencies": {
"@codemirror/autocomplete": "^6.8.1",
"@replit/codemirror-vim": "^6.0.14",
"monkey-around": "^2.3.0"
}
}