-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.64 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
{
"name": "bp-refactoring",
"displayName": "bp-refactoring",
"description": "Refactor your code using blueprints",
"repository": {
"url": "https://github.com/romgerman/bp-refactoring"
},
"version": "0.0.1",
"engines": {
"vscode": "^1.89.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "bp-refactoring.open-view",
"title": "Open Blueprint View"
},
{
"command": "bp-refactoring.group-nodes",
"title": "Group Nodes"
}
],
"menus": {
"webview/context": [
{
"command": "bp-refactoring.group-nodes"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --mode development --config webpack.config.ts",
"watch": "webpack --mode development --watch --config webpack.config.ts",
"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": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.89.0",
"@types/vscode-webview": "^1.57.5",
"@types/vue-select": "^3.16.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"css-loader": "^6.11.0",
"daisyui": "^4.11.1",
"eslint": "^8.54.0",
"mini-css-extract-plugin": "^2.9.0",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.13",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"style-loader": "^3.3.4",
"tailwindcss": "^3.4.3",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"vue-loader": "^17.4.2",
"vue-style-loader": "^4.1.3",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpackbar": "^6.0.1"
},
"dependencies": {
"@floating-ui/vue": "^1.1.1",
"@vscode/codicons": "^0.0.35",
"@vscode/webview-ui-toolkit": "^1.4.0",
"@vue-flow/background": "^1.3.0",
"@vue-flow/core": "^1.38.5",
"@vue-flow/minimap": "^1.5.0",
"@vueuse/core": "^10.11.0",
"eventemitter3": "^5.0.1",
"minimatch": "^9.0.5",
"pinia": "^2.1.7",
"reflect-metadata": "^0.2.2",
"ts-pattern": "^5.2.0",
"typescript": "^5.4.5",
"vue": "^3.4.31",
"vue-select": "^4.0.0-beta.6",
"zod": "^3.23.8"
}
}