-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 2.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "svisualize",
"displayName": "Svisualize",
"publisher":"Svisualize-dev",
"description": "visualize your svelte components as you code",
"version": "0.0.5",
"icon": "media/logo.jpg",
"repository": {
"type": "git",
"url": "https://github.com/oslabs-beta/Svisualize.git"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"keywords": [
"svelte",
"d3",
"svelte components",
"hierarchy tree",
"parent-child",
"visualizer",
"extension",
"webview"
],
"license": "MIT",
"pricing": "Free",
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "svisualize-sidebar-view",
"title": "Svisualize",
"icon": "media/treeSym.svg"
}
]
},
"views": {
"svisualize-sidebar-view": [
{
"type": "webview",
"id": "svisualize-sidebar",
"name": "Svisualize",
"icon": "media/treeSym.svg",
"contextualTitle": "Svisualize"
}
]
},
"commands": [
{
"command": "svisualize.sendUri",
"category": "svisualize",
"title": "Send Uri"
},
{
"command": "svisualize.sendFileNames",
"category": "svisualize",
"title": "Send File Names"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --config webpack.config.js",
"watch": "concurrently \"webpack --watch\" \"webpack --config webpack.config.js\"",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@tsconfig/svelte": "^5.0.2",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"autoprefixer": "^10.4.17",
"chai": "*",
"child_process": "^1.0.2",
"d3": "^7.8.5",
"eslint": "^8.56.0",
"fs": "^0.0.1-security",
"mini-css-extract-plugin": "^2.8.0",
"mocha": "^10.3.0",
"path": "^0.12.7",
"postcss": "^8.4.35",
"postcss-loader": "^8.1.0",
"svelte": "^4.2.10",
"svelte-loader": "^3.1.9",
"tailwindcss": "^3.4.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@types/chai": "^4.3.11",
"concurrently": "^8.2.2",
"css-loader": "^6.10.0",
"style-loader": "^3.3.4"
}
}