-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 892 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 892 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
30
31
32
33
34
{
"name": "template-folder",
"version": "1.0.4",
"description": "Moves notes to a folder when applying a template.",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check"
},
"keywords": [],
"author": "LucasOe",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.15.29",
"@typescript-eslint/eslint-plugin": "8.33.1",
"@typescript-eslint/parser": "8.33.1",
"builtin-modules": "5.0.0",
"esbuild": "0.25.5",
"eslint": "8.57.1",
"eslint-config-prettier": "^10.1.5",
"obsidian": "latest",
"obsidian-typings": "^3.9.5",
"prettier": "^3.5.3",
"tslib": "2.8.1",
"typescript": "5.8.3"
},
"dependencies": {
"monkey-around": "^3.0.0"
}
}