-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
155 lines (155 loc) · 4.14 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "d2c-vscode",
"version": "0.0.18",
"description": "Bricks is Github copilot for UI engineering. It is built by fullstack engineers for fullstack engineers.",
"repository": {
"type": "git",
"url": "https://github.com/bricks-cloud/vscode"
},
"main": "./out/extension.js",
"scripts": {
"dev:install": "vsce package && code --install-extension d2c-vscode-0.0.18.vsix --force",
"vscode:prepublish": "node esbuild.prod.js",
"watch": "node esbuild.dev.js",
"publish": "vsce publish && npm version patch --force"
},
"dependencies": {
"@amplitude/analytics-node": "^1.1.4",
"@types/prettier": "^2.7.2",
"@types/tcp-port-used": "^1.0.1",
"autoprefixer": "^10.4.13",
"esbuild-sass-plugin": "^2.5.0",
"esbuild-wasm": "^0.17.8",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"get-port": "^6.1.2",
"mkdirp": "^0.5.1",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^2.6.2",
"sass": "^1.58.3",
"socket.io": "^4.5.4",
"socket.io-client": "^4.6.1",
"tailwind": "^3.1.0",
"tailwindcss": "^3.2.4",
"tcp-port-used": "^1.0.2",
"uuid": "^9.0.0",
"vscode-uri": "^3.0.7"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/fs-extra": "^11.0.1",
"@types/mkdirp": "^0.5.2",
"@types/node": "^18.11.19",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@types/rimraf": "^2.0.2",
"@types/uuid": "^9.0.1",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"esbuild": "^0.17.8",
"eslint": "^8.28.0",
"prettier": "2.8.4",
"typescript": "^4.9.3"
},
"engines": {
"vscode": "^1.74.0"
},
"activationEvents": [
"onStartupFinished"
],
"categories": [
"Other"
],
"contributes": {
"views": {
"explorer": [
{
"id": "bricksWorkspace",
"name": "Bricks Generated Files"
}
]
},
"menus": {
"view/title": [
{
"command": "bricksDesignToCode.exportAllFiles",
"group": "navigation",
"when": "view == bricksWorkspace"
}
],
"view/item/context": [
{
"command": "bricksDesignToCode.exportFile",
"group": "navigation",
"when": "view == bricksWorkspace"
}
]
},
"commands": [
{
"command": "bricksDesignToCode.openFile",
"title": "Open File"
},
{
"command": "bricksDesignToCode.activate",
"title": "Activate Bricks"
},
{
"command": "bricksDesignToCode.shutDown",
"title": "Shut Down Bricks"
},
{
"command": "bricksDesignToCode.openWebview",
"title": "Open Webview",
"category": "Bricks"
},
{
"command": "bricksDesignToCode.handleUri",
"title": "Start handling Uris"
},
{
"command": "bricksDesignToCode.preview.show",
"title": "Show preview of currently opened file"
},
{
"command": "bricksDesignToCode.refreshEntry",
"title": "Refresh"
},
{
"command": "bricksDesignToCode.exportAllFiles",
"title": "Export All Files...",
"icon": {
"light": "resources/save-light.svg",
"dark": "resources/save-dark.svg"
}
},
{
"command": "bricksDesignToCode.exportFile",
"title": "Export Selected..."
}
],
"configuration": {
"title": "Bricks Config",
"properties": {
"bricksDesignToCode.settings.showStatusBarItem": {
"type": "boolean",
"default": true,
"description": "Change this to false if you don't want the Bricks button to show in the statusbar"
},
"bricksDesignToCode.uniqueUserID": {
"type": "string",
"default": "",
"description": "Unique user ID for analytics purposes.",
"scope": "global"
}
}
}
},
"displayName": "Bricks Design to Code",
"icon": "assets/bricks-logo.png",
"publisher": "bricks"
}