-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.12 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
46
47
48
49
{
"name": "folder-tree-viewer",
"version": "1.0.1",
"author": "Alexandr Petyaykin",
"main": "./dist/index.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"bin": {
"folder-tree-viewer": "dist/index.cjs"
},
"license": "MIT",
"files": [
"dist/",
"LICENSE"
],
"scripts": {
"release": "standard-version && rollup -c",
"build": "rollup -c"
},
"devDependencies": {
"@rollup/plugin-commonjs": "25.0.7",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.6",
"commander": "^11.1.0",
"prettier": "3.1.1",
"rollup": "4.9.4",
"rollup-plugin-delete": "^2.0.0",
"standard-version": "9.5.0",
"tslib": "^2.6.2",
"typescript": "5.3.3"
},
"keywords": [
"Folder structure",
"Directory tree",
"Command line utility",
"File hierarchy",
"Node.js tool",
"File system viewer",
"Tree structure display",
"Directory listing",
"Path structure",
"Folder navigation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/saneksa/folder-tree-viewer.git"
}
}