-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 783 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 783 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
35
36
37
38
39
40
41
{
"name": "file-tree-generator",
"displayName": "File Tree Generator",
"version": "1.0.0",
"description": "Generate a file tree using Obsidian callouts.",
"main": "main.js",
"scripts": {
"dev": "tsup-node --watch ./src",
"build": "tsup-node"
},
"keywords": [
"file",
"tree",
"file-tree",
"generator",
"file-tree-generator",
"plugin",
"obsidian",
"obsidian-plugin"
],
"author": "Unarray",
"license": "MIT",
"dependencies": {
"ignore": "^5.2.4"
},
"devDependencies": {
"@bluzzi/eslint-config": "^1.1.0",
"@electron/remote": "^2.0.10",
"@types/node": "^16.11.6",
"eslint": "^8.47.0",
"obsidian": "latest",
"tsconfig-paths": "^4.2.0",
"tsup": "^7.2.0",
"typescript": "5.2.2"
},
"eslintConfig": {
"extends": [
"@bluzzi"
]
}
}