| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- {
- "name": "autoclasscpp",
- "displayName": "AutoClassCPP",
- "description": "This is for auto creat class on cpp",
- "version": "0.0.1",
- "engines": {
- "vscode": "^1.47.0"
- },
- "categories": [
- "Other"
- ],
- "activationEvents": [
- "onCommand:extension.helloWorld"
- ],
- "main": "./out/extension.js",
- "contributes": {
- "commands": [
- {
- "command": "extension.helloWorld",
- "title": "Hello World"
- }
- ]
- },
- "scripts": {
- "vscode:prepublish": "npm run compile",
- "compile": "tsc -p ./",
- "lint": "eslint src --ext ts",
- "watch": "tsc -watch -p ./",
- "pretest": "npm run compile && npm run lint",
- "test": "node ./out/test/runTest.js"
- },
- "devDependencies": {
- "@types/glob": "^7.1.1",
- "@types/mocha": "^7.0.1",
- "@types/node": "^12.11.7",
- "@types/vscode": "^1.47.0",
- "eslint": "^6.8.0",
- "@typescript-eslint/parser": "^2.18.0",
- "@typescript-eslint/eslint-plugin": "^2.18.0",
- "glob": "^7.1.6",
- "mocha": "^7.0.1",
- "typescript": "^3.7.5",
- "vscode-test": "^1.3.0"
- }
- }
|