-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.48 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "file-makeup-viewer",
"displayName": "File Makeup Viewer",
"description": "File Makeup Viewer is a VS Code extension that shows you a graph of all the files in your current working directory. Pull Requests welcome and needed!",
"version": "1.2.0",
"publisher": "Villy-P",
"repository": "https://github.com/Villy-P/File-Makeup-Viewer",
"license": "MIT",
"engines": {
"vscode": "^1.83.0"
},
"categories": [
"Visualization",
"Testing"
],
"author": {
"name": "Valerius Petrini"
},
"keywords": [
"folder",
"view",
"file",
"visualize",
"graph"
],
"activationEvents": [
"onWebviewPanel:file-makeup-viewer"
],
"main": "./out/extension/extension.js",
"icon": "./assets/pie-chart-683.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"contributes": {
"commands": [
{
"command": "file-makeup-viewer.show-makeup",
"title": "Display File Makeup"
}
]
},
"scripts": {
"install:all": "npm install && cd webview-ui && npm install",
"start:webview": "cd webview-ui && npm run dev",
"build:webview": "cd webview-ui && npm run build",
"vscode:prepublish": "conc \"rollup -c\" \"tsc --build .\\tsconfig.node.json\"",
"compile": "conc \"rollup -c -w\" \"tsc --build .\\tsconfig.node.json -w\"",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.0",
"@types/bytes": "^3.1.4",
"@types/glob": "^8.1.0",
"@types/node": "^22.5.1",
"@types/vscode": "^1.83.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.3.0",
"@vscode/webview-ui-toolkit": "^1.4.0",
"autoprefixer": "^10.4.20",
"bytes": "^3.1.2",
"eslint": "^9.12.0",
"glob": "^11.0.0",
"path": "^0.12.7",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"rollup-plugin-terser": "^7.0.2",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3",
"vscode-test": "^1.6.1"
},
"dependencies": {
"chart.js": "^4.4.4",
"directory-tree": "^3.5.2",
"svelte": "^4.2.19"
}
}