-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
131 lines (131 loc) · 3.4 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
{
"name": "scout",
"displayName": "Scout",
"publisher": "ncbradley",
"description": "",
"version": "0.13.2",
"repository": "https://github.com/nickbradley/scout",
"license": "MIT",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onView:scout.webAppView",
"onCommand:scout.search"
],
"main": "./dist/host/extension.js",
"browser": "./dist/host/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "scout",
"title": "Scout",
"icon": "resources/icon.png"
}
]
},
"views": {
"scout": [
{
"id": "scout.webAppView",
"name": "",
"type": "webview"
}
]
},
"keybindings": [
{
"command": "scout.search",
"key": "ctrl+'",
"mac": "cmd+'"
}
],
"commands": [
{
"command": "scout.search",
"title": "Perform a web search",
"category": "Scout"
}
]
},
"scripts": {
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. --extensionTestsPath=dist/web/test/suite/index.js",
"pretest": "yarn run compile-web",
"vscode:prepublish": "yarn run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "yarn run build-ui && webpack --mode production --devtool hidden-source-map",
"lint": "eslint src --ext ts",
"run-in-browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
"serve": "vue-cli-service serve",
"build-ui": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint-ui": "vue-cli-service lint",
"watch-ui": "vue-cli-service build --watch --mode development",
"build-cli": "tsc --build ./src/cli/tsconfig.json",
"scout": "node ./dist/cli/index.js"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/mocha": "^9.0.0",
"@types/node": "^18.7.16",
"@types/parse5": "^6.0.3",
"@types/vscode": "^1.59.0",
"@types/vscode-webview": "^1.57.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-web": "^0.0.13",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-plugin-unit-jest": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "^1.0.3",
"assert": "^2.0.0",
"babel-loader": "^8.2.3",
"deepmerge": "^4.2.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"jest": "^27.0.7",
"mocha": "^9.1.1",
"prettier": "2.4.1",
"process": "^0.11.10",
"sass": "~1.32",
"sass-loader": "^10",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.5",
"umd-compat-loader": "^2.1.2",
"vue-cli-plugin-vuetify": "~2.4.4",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.7.0",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@web/parse5-utils": "^1.3.0",
"async-batch": "^1.1.2",
"core-js": "^3.6.5",
"dotenv": "^16.0.1",
"isomorphic-unfetch": "^3.1.0",
"markdown-link-extractor": "^1.3.0",
"parse5": "^7.0.0",
"prismjs": "^1.28.0",
"ts-morph": "^15.1.0",
"typescript": "^4.5.2",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.1.2",
"vuetify": "^2.6.0",
"web-worker": "^1.2.0"
}
}