-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 799 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 799 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
27
28
29
{
"name": "obsidian-code-linker",
"version": "1.7.0",
"description": "Obsidian plugin: autocomplete references to source-code files and types, inserting an editor deep-link.",
"author": "max-fluff",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/max-fluff/obsidian-code-linker.git"
},
"keywords": [
"obsidian",
"obsidian-plugin",
"code",
"autocomplete"
],
"private": true,
"scripts": {
"build": "node esbuild.config.mjs",
"bump": "node src/shared/version-bump.mjs",
"test": "node test/run.js",
"test:core": "node test/run.js --core",
"plates": "node src/shared/branding/make-plates.mjs",
"banner": "node src/shared/branding/make-banner.mjs"
},
"devDependencies": {
"esbuild": "0.17.19"
}
}