|
1 | 1 | { |
2 | 2 | "name": "databricks", |
3 | | - "displayName": "databricks", |
4 | | - "description": "IDE support for Databricks", |
5 | | - "version": "0.0.1", |
6 | | - "engines": { |
7 | | - "vscode": "^1.68.0" |
8 | | - }, |
9 | | - "categories": [ |
10 | | - "Other" |
11 | | - ], |
12 | | - "activationEvents": [ |
13 | | - "onCommand:databricks.helloWorld" |
14 | | - ], |
15 | | - "main": "./dist/extension.js", |
16 | | - "contributes": { |
17 | | - "commands": [ |
18 | | - { |
19 | | - "command": "databricks.helloWorld", |
20 | | - "title": "Hello World" |
21 | | - } |
22 | | - ] |
23 | | - }, |
24 | | - "scripts": { |
25 | | - "vscode:prepublish": "npm run package", |
26 | | - "compile": "webpack", |
27 | | - "watch": "webpack --watch", |
28 | | - "package": "webpack --mode production --devtool hidden-source-map", |
29 | | - "compile-tests": "tsc -p . --outDir out", |
30 | | - "watch-tests": "tsc -p . -w --outDir out", |
31 | | - "pretest": "npm run compile-tests && npm run compile && npm run lint", |
32 | | - "lint": "eslint src --ext ts", |
33 | | - "test": "node ./out/test/runTest.js" |
34 | | - }, |
35 | | - "devDependencies": { |
36 | | - "@types/vscode": "^1.68.0", |
37 | | - "@types/glob": "^7.2.0", |
38 | | - "@types/mocha": "^9.1.1", |
39 | | - "@types/node": "16.x", |
40 | | - "@typescript-eslint/eslint-plugin": "^5.27.0", |
41 | | - "@typescript-eslint/parser": "^5.27.0", |
42 | | - "eslint": "^8.16.0", |
43 | | - "glob": "^8.0.3", |
44 | | - "mocha": "^10.0.0", |
45 | | - "typescript": "^4.7.2", |
46 | | - "ts-loader": "^9.3.0", |
47 | | - "webpack": "^5.72.1", |
48 | | - "webpack-cli": "^4.9.2", |
49 | | - "@vscode/test-electron": "^2.1.3" |
50 | | - } |
| 3 | + "displayName": "databricks", |
| 4 | + "description": "IDE support for Databricks", |
| 5 | + "version": "0.0.1", |
| 6 | + "engines": { |
| 7 | + "vscode": "^1.68.0" |
| 8 | + }, |
| 9 | + "categories": [ |
| 10 | + "Other" |
| 11 | + ], |
| 12 | + "activationEvents": [ |
| 13 | + "onCommand:databricks.helloWorld" |
| 14 | + ], |
| 15 | + "main": "./dist/extension.js", |
| 16 | + "contributes": { |
| 17 | + "commands": [ |
| 18 | + { |
| 19 | + "command": "databricks.helloWorld", |
| 20 | + "title": "Hello World" |
| 21 | + } |
| 22 | + ] |
| 23 | + }, |
| 24 | + "scripts": { |
| 25 | + "vscode:prepublish": "npm run package", |
| 26 | + "compile": "webpack", |
| 27 | + "watch": "webpack --watch", |
| 28 | + "package": "webpack --mode production --devtool hidden-source-map", |
| 29 | + "compile-tests": "tsc -p . --outDir out", |
| 30 | + "watch-tests": "tsc -p . -w --outDir out", |
| 31 | + "pretest": "npm run compile-tests && npm run compile && npm run lint", |
| 32 | + "fix": "prettier . --write", |
| 33 | + "lint": "eslint src --ext ts && prettier . -c", |
| 34 | + "test": "node ./out/test/runTest.js" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@types/glob": "^7.2.0", |
| 38 | + "@types/mocha": "^9.1.1", |
| 39 | + "@types/node": "16.x", |
| 40 | + "@types/vscode": "^1.68.0", |
| 41 | + "@typescript-eslint/eslint-plugin": "^5.27.0", |
| 42 | + "@typescript-eslint/parser": "^5.27.0", |
| 43 | + "@vscode/test-electron": "^2.1.3", |
| 44 | + "eslint": "^8.16.0", |
| 45 | + "eslint-config-prettier": "^8.5.0", |
| 46 | + "glob": "^8.0.3", |
| 47 | + "mocha": "^10.0.0", |
| 48 | + "prettier": "^2.7.1", |
| 49 | + "ts-loader": "^9.3.0", |
| 50 | + "typescript": "^4.7.2", |
| 51 | + "webpack": "^5.72.1", |
| 52 | + "webpack-cli": "^4.9.2" |
| 53 | + } |
51 | 54 | } |
0 commit comments