-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
102 lines (102 loc) · 3.19 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
{
"name": "editor-extensions",
"version": "0.0.4",
"private": true,
"displayName": "Konveyor",
"description": "VSCode Extension for Konveyor to assist in migrating and modernizing applications.",
"license": "Apache-2.0",
"publisher": "Konveyor",
"author": "Konveyor",
"icon": "vscode/resources/konveyor-icon-color.png",
"homepage": "https://github.com/konveyor/editor-extensions/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/konveyor/editor-extensions"
},
"bugs": "https://github.com/konveyor/editor-extensions/issues",
"engines": {
"vscode": "^1.93.0",
"node": ">=22.9.0",
"npm": "^9.5.0 || ^10.5.2"
},
"type": "module",
"categories": [
"Programming Languages",
"Machine Learning",
"Snippets",
"Linters"
],
"keywords": [
"Migration",
"Migrate",
"modernizing",
"MTA",
"Analyze"
],
"workspaces": [
"shared",
"webview-ui",
"vscode"
],
"scripts": {
"prepare": "husky",
"postinstall": "npm run build -w shared",
"clean": "rimraf ./dist ./downloaded_assets && npm run clean --workspaces --if-present",
"clean:all": "npm run clean && rimraf ./node_modules ./**/node_modules/",
"lint": "eslint ./scripts && npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"predev": "npm run build -w shared",
"dev": "concurrently -c auto 'npm:dev:shared' 'npm:dev:webview-ui' 'npm:dev:vscode'",
"dev:shared": "npm run dev -w shared",
"dev:webview-ui": "npm run start -w webview-ui",
"dev:vscode": "npm run dev -w vscode",
"build": "npm run build --workspaces --if-present",
"collect-assets": "rimraf ./downloaded_assets && node ./scripts/collect-assets.js",
"dist": "rimraf ./dist && node ./scripts/copy-dist.js",
"package": "cd dist && vsce package",
"test": "npm run lint && npm run build && npm run test --workspaces --if-present"
},
"lint-staged": {
"./scripts/*.{mjs,js,mts,ts}": "eslint --fix",
"!(package-lock.json)*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "22.x",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/vsce": "^3.2.1",
"colorette": "^2.0.20",
"concurrently": "^8.2.2",
"eslint": "~9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tar": "^7.4.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"unzipper": "^0.12.3"
},
"dependencies": {
"fs-extra": "^11.2.0",
"globby": "^14.0.2",
"immer": "10.1.1",
"js-yaml": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"uuid": "^10.0.0",
"vscode-jsonrpc": "^8.2.1"
}
}