generated from tjx666/vscode-extension-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
209 lines (209 loc) · 8.03 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
"name": "scripting-listener",
"displayName": "Scripting Listener",
"version": "0.0.4",
"preview": true,
"description": "Switch and Log Viewer for Adobe Photoshop Scripting Listener Plugin",
"publisher": "YuTengjing",
"icon": "images/logo.png",
"license": "SEE LICENSE IN LICENSE",
"main": "dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run build-ext & npm run build-web",
"compile-ext": "cross-env NODE_ENV=development ts-node --files -P ./scripts/tsconfig.json ./scripts/index.extension.ts",
"watch-ext": "cross-env NODE_ENV=development ts-node --files -P ./scripts/tsconfig.json ./scripts/index.extension.ts --watch",
"build-ext": "cross-env NODE_ENV=production ts-node --files -P ./scripts/tsconfig.json ./scripts/index.extension.ts",
"build-ext-analyze": "npm run build-ext -- --analyze",
"start-web": "cross-env NODE_ENV=development ts-node --files -P ./scripts/tsconfig.json ./scripts/index.web.ts",
"build-web": "cross-env NODE_ENV=production ts-node --files -P ./scripts/tsconfig.json ./scripts/index.web.ts",
"build-web-analyze": "npm run build-web -- --analyze",
"compile-test": "tsc -p ./test/tsconfig.json",
"watch-test": "tsc -w -p ./test/tsconfig.json",
"lint": "eslint -c .eslintrc.js --ext .ts ./{scripts,src,test}/**/*.ts",
"test": "npm run compile-ext && npm run build-web && npm run compile-test && node ./dist/test/runTests.js",
"prepare": "husky install"
},
"author": {
"name": "YuTengjing",
"url": "https://github.com/tjx666",
"email": "ytj2713151713@gmail.com"
},
"badges": [
{
"url": "https://img.shields.io/badge/License-MIT-brightgreen.svg",
"description": "License: MIT",
"href": "https://github.com/tjx666/scripting-listener/blob/master/LICENSE"
},
{
"url": "https://img.shields.io/badge/PRs-welcome-brightgreen.svg",
"description": "PRs Welcome",
"href": "https://github.com/tjx666/scripting-listener"
}
],
"homepage": "https://github.com/tjx666/scripting-listener/blob/master/README.md",
"bugs": {
"url": "https://github.com/tjx666/scripting-listener/issues",
"email": "ytj2713151713@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/tjx666/scripting-listener"
},
"engines": {
"vscode": "^1.71.0",
"node": "^16.11.59"
},
"categories": [
"Other"
],
"keywords": [
"photoshop",
"ps",
"extendscript",
"scripting listener",
"action manager",
"cep"
],
"activationEvents": [
"onCommand:scriptingListener.enableScriptingListenerLog",
"onCommand:scriptingListener.disableScriptingListenerLog",
"onCommand:scriptingListener.openLogViewer",
"onCommand:scriptingListener.openLogFile"
],
"contributes": {
"commands": [
{
"command": "scriptingListener.enableScriptingListenerLog",
"title": "Enable Scripting Listener Log"
},
{
"command": "scriptingListener.disableScriptingListenerLog",
"title": "Disable Scripting Listener Log"
},
{
"command": "scriptingListener.openLogViewer",
"title": "Open Scripting Listener Log Viewer"
},
{
"command": "scriptingListener.openLogFile",
"title": "Open Scripting Listener Log File"
}
],
"configuration": {
"title": "Scripting Listener",
"properties": {
"ScriptingListener.codeBlockCount": {
"description": "The count of code blocks to show in log viewer, will cause stuck if set too large",
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 10
},
"ScriptingListener.parsedLinesCountPerCodeBlock": {
"description": "The count of lines will be clean and pretty per code block",
"type": "integer",
"minimum": 10,
"maximum": 5000,
"default": 100
},
"ScriptingListener.logFileEncoding": {
"description": "The encoding of your log file, you may need to set gbk if your Photoshop is Chinese locale",
"type": "string",
"default": "utf8"
},
"ScriptingListener.psAppFolderPath": {
"type": "string",
"title": "For example: /Applications/Adobe Photoshop 2022"
}
}
}
},
"dependencies": {
"fsevents": "2.3.2"
},
"devDependencies": {
"@babel/core": "7.19.1",
"@babel/eslint-parser": "7.19.1",
"@babel/plugin-proposal-decorators": "7.19.1",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.1",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.19.0",
"@nuxt/friendly-errors-webpack-plugin": "2.5.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.7",
"@swc/core": "1.3.2",
"@types/babel__core": "7.1.19",
"@types/eslint": "8.4.6",
"@types/glob": "8.0.0",
"@types/mocha": "9.1.1",
"@types/node": "16.11.59",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-syntax-highlighter": "15.5.5",
"@types/vscode": "1.71.0",
"@types/vscode-webview": "1.57.0",
"@types/webpack": "5.28.0",
"@types/webpack-bundle-analyzer": "4.4.2",
"@types/webpack-env": "1.18.0",
"@types/webpackbar": "4.0.3",
"@types/yargs": "17.0.12",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"@vscode/test-electron": "2.1.5",
"@vscode/webview-ui-toolkit": "1.1.0",
"babel-loader": "8.2.5",
"chokidar": "3.5.3",
"clean-webpack-plugin": "4.0.0",
"core-js": "3.25.2",
"cross-env": "7.0.3",
"css-loader": "6.7.1",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-unicorn": "43.0.2",
"execa": "6.1.0",
"fork-ts-checker-webpack-plugin": "7.2.13",
"format-imports": "3.1.0",
"glob": "8.0.3",
"highlight.js": "11.6.0",
"husky": "8.0.1",
"iconv-lite": "0.6.3",
"javascript-stringify": "2.1.0",
"less": "4.1.3",
"less-loader": "11.0.0",
"lint-staged": "13.0.3",
"mocha": "10.0.0",
"postcss": "8.4.16",
"postcss-less": "6.0.0",
"prettier": "2.7.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-refresh": "0.14.0",
"react-router-dom": "6.4.0",
"speed-measure-webpack-plugin": "1.5.0",
"style-loader": "3.3.1",
"stylelint": "14.12.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-standard": "28.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.5.0",
"terser-webpack-plugin": "5.3.6",
"ts-loader": "9.4.0",
"ts-node": "10.9.1",
"type-fest": "2.19.0",
"types-for-adobe": "7.0.6",
"typescript": "4.8.3",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.6.1",
"webpack-dev-server": "4.11.1",
"webpack-merge": "5.8.0",
"webpackbar": "5.0.2",
"yargs": "17.5.1"
}
}