|
| 1 | +{ |
| 2 | + "name": "leetcode-practice-vscode", |
| 3 | + "displayName": "leetcode-practice", |
| 4 | + "description": "A extension on vs code for leetcode-practice.", |
| 5 | + "version": "0.0.1", |
| 6 | + "engines": { |
| 7 | + "vscode": "^1.96.0" |
| 8 | + }, |
| 9 | + "categories": [ |
| 10 | + "Other" |
| 11 | + ], |
| 12 | + "activationEvents": [], |
| 13 | + "main": "./dist/extension.js", |
| 14 | + "contributes": { |
| 15 | + "commands": [ |
| 16 | + { |
| 17 | + "command": "leetcode-practice-vscode.helloWorld", |
| 18 | + "title": "Hello World" |
| 19 | + } |
| 20 | + ] |
| 21 | + }, |
| 22 | + "scripts": { |
| 23 | + "vscode:prepublish": "yarn run package", |
| 24 | + "compile": "yarn run check-types && yarn run lint && node esbuild.js", |
| 25 | + "watch": "npm-run-all -p watch:*", |
| 26 | + "watch:esbuild": "node esbuild.js --watch", |
| 27 | + "watch:tsc": "tsc --noEmit --watch --project tsconfig.json", |
| 28 | + "package": "yarn run check-types && yarn run lint && node esbuild.js --production", |
| 29 | + "compile-tests": "tsc -p . --outDir out", |
| 30 | + "watch-tests": "tsc -p . -w --outDir out", |
| 31 | + "pretest": "yarn run compile-tests && yarn run compile && yarn run lint", |
| 32 | + "check-types": "tsc --noEmit", |
| 33 | + "lint": "eslint src", |
| 34 | + "test": "vscode-test" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@types/vscode": "^1.96.0", |
| 38 | + "@types/mocha": "^10.0.10", |
| 39 | + "@types/node": "20.x", |
| 40 | + "@typescript-eslint/eslint-plugin": "^8.17.0", |
| 41 | + "@typescript-eslint/parser": "^8.17.0", |
| 42 | + "eslint": "^9.16.0", |
| 43 | + "esbuild": "^0.24.0", |
| 44 | + "npm-run-all": "^4.1.5", |
| 45 | + "typescript": "^5.7.2", |
| 46 | + "@vscode/test-cli": "^0.0.10", |
| 47 | + "@vscode/test-electron": "^2.4.1" |
| 48 | + } |
| 49 | +} |
0 commit comments