-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 726 Bytes
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
{
"name": "inline-encrypter",
"version": "1.5.12",
"description": "A simple plugin for inline encrypting in Obsidian notes",
"main": "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"
},
"keywords": [],
"author": "Alexander Cheryomukhin",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"esbuild": "0.25.0",
"obsidian": "latest",
"tslib": "2.4.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@codemirror/language": "^6.9.2"
}
}