|
1 | 1 | { |
2 | 2 | "name": "dataverse-devtools", |
3 | 3 | "displayName": "Dataverse DevTools", |
4 | | - "version": "2.1.13", |
| 4 | + "version": "2.2.0", |
5 | 5 | "description": "The all-in-one tool to develop code for Dataverse/Dynamics 365. Helps you connect to a Dataverse environment, generate TypeScript definitions for entities, create different type of Dataverse-specific projects and much more.", |
6 | 6 | "publisher": "danish-naglekar", |
7 | 7 | "author": { |
|
20 | 20 | "*" |
21 | 21 | ], |
22 | 22 | "engines": { |
23 | | - "vscode": "^1.58.0" |
| 23 | + "vscode": "^1.80.0" |
24 | 24 | }, |
25 | | - "main": "./out/extension.js", |
| 25 | + "main": "./dist/extension.js", |
26 | 26 | "scripts": { |
27 | | - "vscode:prepublish": "npm run compile", |
28 | | - "compile": "tsc -p ./", |
29 | | - "watch": "tsc -watch -p ./", |
30 | | - "pretest": "npm run compile && npm run lint", |
| 27 | + "vscode:prepublish": "npm run package", |
| 28 | + "compile": "webpack", |
| 29 | + "watch": "webpack --watch", |
| 30 | + "package": "webpack --mode production --devtool hidden-source-map", |
| 31 | + "compile-tests": "tsc -p . --outDir out", |
| 32 | + "watch-tests": "tsc -p . -w --outDir out", |
| 33 | + "pretest": "npm run compile-tests && npm run compile && npm run lint", |
31 | 34 | "lint": "eslint src --ext ts", |
| 35 | + "test": "vscode-test", |
32 | 36 | "format": "prettier --write src", |
33 | | - "test": "node ./out/test/runTest.js", |
34 | 37 | "version": "auto-changelog -p && git add CHANGELOG.md", |
35 | 38 | "contributors:add": "all-contributors add", |
36 | 39 | "contributors:generate": "all-contributors generate" |
|
551 | 554 | "devDependencies": { |
552 | 555 | "@types/glob": "^7.1.3", |
553 | 556 | "@types/mocha": "^8.2.2", |
554 | | - "@types/node": "14.x", |
| 557 | + "@types/node": "18.x", |
555 | 558 | "@types/node-fetch": "^2.5.11", |
556 | 559 | "@types/uuid": "^8.3.1", |
557 | | - "@types/vscode": "^1.58.0", |
558 | | - "@typescript-eslint/eslint-plugin": "^4.26.0", |
559 | | - "@typescript-eslint/parser": "^4.26.0", |
| 560 | + "@types/vscode": "^1.80.0", |
| 561 | + "@typescript-eslint/eslint-plugin": "^6.15.0", |
| 562 | + "@typescript-eslint/parser": "^6.15.0", |
| 563 | + "@vscode/test-cli": "^0.0.4", |
| 564 | + "@vscode/test-electron": "^2.3.8", |
560 | 565 | "all-contributors-cli": "^6.20.0", |
561 | 566 | "auto-changelog": "^2.3.0", |
562 | | - "eslint": "^7.27.0", |
| 567 | + "copy-webpack-plugin": "^11.0.0", |
| 568 | + "eslint": "^8.56.0", |
563 | 569 | "glob": "^7.1.7", |
564 | 570 | "mocha": "^10.0.0", |
565 | | - "typescript": "^4.3.2", |
566 | | - "vscode-test": "^1.5.2" |
| 571 | + "ts-loader": "^9.5.1", |
| 572 | + "typescript": "^5.3.3", |
| 573 | + "webpack": "^5.89.0", |
| 574 | + "webpack-cli": "^5.1.4" |
567 | 575 | }, |
568 | 576 | "dependencies": { |
569 | 577 | "@azure/identity": "^3.0.0", |
570 | 578 | "@azure/identity-vscode": "^1.0.0", |
571 | 579 | "@azure/msal-node": "^1.3.0", |
572 | 580 | "@types/fs-extra": "^9.0.12", |
573 | 581 | "@types/lodash": "^4.14.171", |
574 | | - "@vscode/extension-telemetry": "^0.8.5", |
| 582 | + "@vscode/extension-telemetry": "^0.9.2", |
575 | 583 | "axios": "^0.27.2", |
576 | 584 | "conditional-reduce": "^1.2.0", |
577 | 585 | "dayjs": "^1.10.7", |
|
0 commit comments