-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.17 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.17 KB
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
41
42
43
44
45
46
47
48
49
{
"name": "copy-link",
"version": "0.1.0",
"description": "Add commands to copy link to file, heading or block.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node esbuild.config.mjs production",
"css": "true",
"knip": "knip",
"preversion": "node version-bump.mjs --preflight",
"version": "node version-bump.mjs",
"postversion": "git push origin main --follow-tags --force-with-lease"
},
"knip": {
"entry": [
"main.ts"
],
"project": [
"**/*.ts"
],
"ignoreDependencies": [
"prettier"
],
"ignoreBinaries": [
"tsc",
"knip"
],
"ignoreExportsUsedInFile": true
},
"keywords": [],
"author": "churnish",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@types/node": "^24.10.1",
"builtin-modules": "^3.3.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.3",
"eslint-plugin-obsidianmd": "^0.1.9",
"globals": "^17.4.0",
"knip": "^5.85.0",
"obsidian": "^1.11.4",
"prettier": "^3.8.1",
"tslib": "^2.8.1",
"typescript": "^5.9.3"
}
}