1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- "name": "dayz-debug",
- "displayName": "DayZ Log Monitor",
- "description": "DayZ mod development debug log monitor",
- "version": "1.0.0",
- "publisher": "DcrClub",
- "engines": {
- "vscode": "^1.83.0"
- },
- "icon": "images/icon.png",
- "categories": [
- "Other"
- ],
- "keywords": [
- "dayz",
- "debug",
- "log",
- "monitor"
- ],
- "main": "./out/extension.js",
- "contributes": {
- "viewsContainers": {
- "panel": [
- {
- "id": "grepPanel",
- "title": "DayZDebug",
- "icon": "images/grep.png"
- }
- ]
- },
- "configuration": {
- "title": "DayZDebug",
- "properties": {
- "dayzDebug.leftDirPath": {
- "type": "string",
- "default": "",
- "description": "左侧日志文件夹路径"
- },
- "dayzDebug.rightDirPath": {
- "type": "string",
- "default": "",
- "description": "右侧日志文件夹路径"
- }
- }
- },
- "views": {
- "grepPanel": [
- {
- "id": "leftLogs",
- "name": "服务端日志"
- },
- {
- "id": "rightLogs",
- "name": "客户端日志"
- }
- ]
- }
- },
- "dependencies": {
- "chokidar": "^3.5.3"
- },
- "scripts": {
- "vscode:prepublish": "npm run compile",
- "compile": "tsc -p ./",
- "watch": "tsc -watch -p ./",
- "pretest": "npm run compile && npm run lint",
- "lint": "eslint src --ext ts",
- "test": "node ./out/test/runTest.js"
- },
- "devDependencies": {
- "@types/mocha": "^10.0.2",
- "@types/node": "18.x",
- "@types/vscode": "^1.83.0",
- "@typescript-eslint/eslint-plugin": "^6.7.3",
- "@typescript-eslint/parser": "^6.7.3",
- "@vscode/test-electron": "^2.3.4",
- "eslint": "^8.50.0",
- "glob": "^10.3.3",
- "mocha": "^10.2.0",
- "typescript": "^5.2.2"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/yourusername/your-repo.git"
- }
- }
|