|
| 1 | +{ |
| 2 | + "name": "sqlnotebook", |
| 3 | + "displayName": "sqlnotebook", |
| 4 | + "description": "A notebook for exploratory SQL work.", |
| 5 | + "version": "0.0.1", |
| 6 | + "engines": { |
| 7 | + "vscode": "^1.59.0" |
| 8 | + }, |
| 9 | + "categories": [ |
| 10 | + "Other" |
| 11 | + ], |
| 12 | + "activationEvents": [], |
| 13 | + "main": "./out/extension/extension.js", |
| 14 | + "contributes": { |
| 15 | + "notebookRenderer": [ |
| 16 | + { |
| 17 | + "id": "sqlnotebook", |
| 18 | + "entrypoint": "./out/client/index.js", |
| 19 | + "displayName": "SQL Notebook", |
| 20 | + "mimeTypes": ["x-application/sample-json-renderer"] |
| 21 | + } |
| 22 | + ] |
| 23 | + }, |
| 24 | + "scripts": { |
| 25 | + "vscode:prepublish": "npm run compile && node out/test/checkNoTestProvider.js", |
| 26 | + "compile": "npm run compile:extension && npm run compile:client", |
| 27 | + "compile:extension": "tsc -b", |
| 28 | + "compile:client": "webpack --mode production", |
| 29 | + "lint": "eslint src --ext ts", |
| 30 | + "watch": "concurrently -r \"npm:watch:*\"", |
| 31 | + "watch:extension": "tsc -b --watch", |
| 32 | + "watch:client": "webpack --mode development --watch", |
| 33 | + "dev": "concurrently -r npm:watch:extension npm:watch:client", |
| 34 | + "pretest": "npm run compile && npm run lint", |
| 35 | + "test": "node ./out/test/runTest.js" |
| 36 | + }, |
| 37 | + "devDependencies": { |
| 38 | + "@types/glob": "^7.1.3", |
| 39 | + "@types/mocha": "^8.2.2", |
| 40 | + "@types/node": "14.x", |
| 41 | + "@types/webpack-env": "^1.16.0", |
| 42 | + "@typescript-eslint/eslint-plugin": "^4.26.0", |
| 43 | + "@typescript-eslint/parser": "^4.26.0", |
| 44 | + "@types/vscode-notebook-renderer": "^1.57.8", |
| 45 | + "@types/vscode": "^1.59.0", |
| 46 | + "concurrently": "^5.3.0", |
| 47 | + "css-loader": "^4.2.0", |
| 48 | + "eslint": "^7.27.0", |
| 49 | + "fork-ts-checker-webpack-plugin": "^5.0.14", |
| 50 | + "glob": "^7.1.7", |
| 51 | + "mocha": "^8.4.0", |
| 52 | + "style-loader": "^1.2.1", |
| 53 | + "ts-loader": "^9.2.2", |
| 54 | + "typescript": "^4.3.2", |
| 55 | + "vscode-notebook-error-overlay": "^1.0.1", |
| 56 | + "vscode-test": "^1.5.2", |
| 57 | + "webpack": "^5.38.1", |
| 58 | + "webpack-cli": "^4.7.0" |
| 59 | + } |
| 60 | +} |
0 commit comments