-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 765 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 765 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
{
"name": "obsidian-alias-from-heading",
"version": "1.1.2",
"description": "Obsidian plugin: Implicitly add an alias matching the first heading in a document.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint main.ts",
"version": "node version-bump.mjs && git add manifest.json versions.json"
},
"keywords": [],
"author": "Chris Basham <chris@bash.am>",
"license": "MIT",
"devDependencies": {
"@types/node": "20.14.11",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"builtin-modules": "4.0.0",
"esbuild": "0.23.0",
"obsidian": "1.6.6",
"tslib": "2.6.3",
"typescript": "5.5.3"
}
}