-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.39 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
{
"name": "vscode-a11ywatch-extension",
"displayName": "A11yWatch",
"description": "A11yWatch lite web accessibility automation in visual studio code.",
"version": "0.1.26",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Other",
"Linters",
"Testing"
],
"icon": "images/logo.png",
"keywords": [
"a11ywatch",
"accessibility",
"vscode",
"vscode-extension"
],
"activationEvents": [
"onStartupFinished"
],
"repository": {
"type": "git",
"url": "https://github.com/a11ywatch/vscode-extension.git"
},
"license": "MIT",
"publisher": "A11yWatch",
"main": "./out/src/extension.js",
"contributes": {
"commands": [
{
"command": "webview.open",
"title": "Open Webview",
"category": "Webview A11yWatch"
},
{
"command": "extension.sendMessage",
"title": "Send Message to Webview",
"category": "Webview A11yWatch"
}
],
"configuration": {
"title": "Webview A11yWatch",
"properties": {}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm-run-all compile:*",
"compile:extension": "tsc -p ./",
"compile:view": "NODE_OPTIONS=--openssl-legacy-provider webpack --mode development",
"fix": "prettier --write '**/*.{js,jsx,ts,tsx}'",
"watch": "npm-run-all -p watch:*",
"watch:extension": "tsc -watch -p ./",
"watch:view": "webpack --watch --mode development",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/node": "^18.11.18",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/vscode": "^1.74.0",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-plugin-react-hooks": "^4.6.0",
"glob": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"vscode-test": "^1.6.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@a11ywatch/a11ywatch": "^0.3.71",
"@a11ywatch/react-a11ywatch-js": "^0.1.26",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"resolutions": {
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10"
}
}