generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
45 lines (45 loc) · 1.25 KB
/
package.json
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
{
"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.11.6",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"builtin-modules": "3.3.0",
"esbuild": "0.17.3",
"eslint": "^8.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-unused-imports": "^3.0.0",
"obsidian": "latest",
"standard-version": "^9.5.0",
"tslib": "2.4.0",
"typescript": "^4.9.5"
},
"dependencies": {
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-md5": "^1.3.1"
}
}