generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 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
{
"name": "obsidian-attachment-management",
"version": "0.9.16",
"description": "Customize your attachment path of notes independently with variables and auto rename it on change.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"lint": "eslint --fix --ext .ts, src",
"format": "prettier --loglevel warn --write \"src/**/*.ts\"",
"build": "tsc -noEmit -skipLibCheck && cross-env BUILD_ENV=production node esbuild.config.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"release": "standard-version"
},
"standard-version": {
"t": ""
},
"keywords": [
"obsidian",
"attachment",
"plugins"
],
"author": "trganda",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"builtin-modules": "3.3.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^3.2.0",
"obsidian": "latest",
"standard-version": "^9.5.0",
"tslib": "2.4.0",
"typescript": "^4.9.5"
},
"dependencies": {
"cross-env": "^7.0.3",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^8.10.2",
"eslint-plugin-prettier": "^4.2.5",
"prettier": "^2.8.8",
"ts-md5": "^1.3.1"
},
"packageManager": "pnpm@10.24.0+sha512.01ff8ae71b4419903b65c60fb2dc9d34cf8bb6e06d03bde112ef38f7a34d6904c424ba66bea5cdcf12890230bf39f9580473140ed9c946fef328b6e5238a345a"
}