-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
126 lines (126 loc) · 3.79 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
{
"name": "ludwig-es",
"displayName": "Ludwig ES",
"description": "HTML-React-Angular Accessibility Toolkit",
"version": "2.0.0",
"icon": "./assets/Ludwig-VSMarket.jpg",
"publisher": "LudwigVS",
"homepage": "https://www.ludwigvs.com",
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "ludwig.toggleLintActiveFile",
"title": "Toggle Lint Active File",
"category": "Ludwig",
"when": "editorLangId =~ /html|javascriptreact|typescriptreact/"
},
{
"command": "ludwig.toggleLintAllFiles",
"title": "Toggle Lint All Files",
"category": "Ludwig",
"when": "workspaceFolderCount > 0"
},
{
"command": "ludwig.clearDiagnostics",
"title": "Clear Accessibility Warnings",
"category": "Ludwig",
"when": "ludwigDiagnosticsPresent"
},
{
"command": "ludwig.saveLintResults",
"title": "Scan File for Errors and Add to Library",
"category": "Ludwig"
},
{
"command": "ludwig.resetLib",
"title": "Delete Local Library",
"category": "Ludwig"
},
{
"command": "ludwig.showLintingMenu",
"title": "See More Options",
"category": "Ludwig"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "ludwigActivityBar",
"title": "Ludwig",
"icon": "assets/Ludwig-Logo-Icon.png"
}
]
},
"views": {}
},
"repository": {
"type": "git",
"url": "https://github.com/vision-null/Ludwig"
},
"scripts": {
"clean": "rm -rf dist",
"vscode:prepublish": "pnpm run package",
"compile": "pnpm run clean && webpack && pnpm run copy-eslint-configs",
"copy-eslint-configs": "mkdir -p dist/eslint/configs && cp src/eslint/configs/*.json dist/eslint/configs/",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-react": "webpack --config webpack.config.js --env target=react",
"watch-react": "webpack --config webpack.config.js --watch",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "pnpm run compile-tests && pnpm run compile && pnpm run lint",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "eslint src --ext ts,tsx --fix",
"lint:debug": "eslint src --ext ts,tsx --debug",
"test": "vscode-test",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@types/chart.js": "^2.9.41",
"@types/node": "20.x",
"@types/vscode": "^1.91.0",
"@vscode/test-cli": "^0.0.9",
"babel-loader": "^9.1.3",
"chart.js": "^4.4.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"eslint": "8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@html-eslint/eslint-plugin": "^0.25.0",
"@html-eslint/parser": "^0.25.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"bufferutil": "^4.0.8",
"eslint-plugin-jsx-a11y": "^6.9.0",
"jsdom": "^24.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-minimal-pie-chart": "^8.4.0"
}
}