Co-authored-by: m.schnitzler <martin.wb.2015@gmail.com> Co-committed-by: m.schnitzler <martin.wb.2015@gmail.com>
		
			
				
	
	
		
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			73 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
    "name": "vscodestat",
 | 
						|
    "displayName": "vscodestat",
 | 
						|
    "version": "1.1.125",
 | 
						|
    "description": "",
 | 
						|
    "categories": [
 | 
						|
        "Other"
 | 
						|
    ],
 | 
						|
    "repository": {
 | 
						|
        "type": "git",
 | 
						|
        "url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/vscodestat.git"
 | 
						|
    },
 | 
						|
    "license": "ISC",
 | 
						|
    "author": "Raphael Piccolo",
 | 
						|
    "main": "./out/extension.js",
 | 
						|
    "scripts": {
 | 
						|
        "compile": "tsc -p ./",
 | 
						|
        "lint": "eslint src --ext ts",
 | 
						|
        "pretest": "npm run compile && npm run lint",
 | 
						|
        "test": "vscode-test",
 | 
						|
        "vscode:prepublish": "npm run compile",
 | 
						|
        "watch": "tsc -watch -p ./"
 | 
						|
    },
 | 
						|
    "contributes": {
 | 
						|
        "commands": [
 | 
						|
            {
 | 
						|
                "command": "vscodestat.helloWorld",
 | 
						|
                "title": "Hello World"
 | 
						|
            },
 | 
						|
            {
 | 
						|
                "command": "vscodestat.setUrl",
 | 
						|
                "title": "setUrl"
 | 
						|
            },
 | 
						|
            {
 | 
						|
                "command": "vscodestat.callUrl",
 | 
						|
                "title": "callUrl"
 | 
						|
            }
 | 
						|
        ],
 | 
						|
        "configuration": {
 | 
						|
            "title": "vscodestat",
 | 
						|
            "properties": {
 | 
						|
                "vscodestat.url": {
 | 
						|
                    "type": "string",
 | 
						|
                    "default": "https://example.com",
 | 
						|
                    "description": "Specifies the url of the server to store the events"
 | 
						|
                }
 | 
						|
            }
 | 
						|
        }
 | 
						|
    },
 | 
						|
    "activationEvents": [
 | 
						|
        "onStartupFinished"
 | 
						|
    ],
 | 
						|
    "devDependencies": {
 | 
						|
        "@types/mocha": "^10.0.10",
 | 
						|
        "@types/node": "24.x",
 | 
						|
        "@types/vscode": "^1.105.0",
 | 
						|
        "@typescript-eslint/eslint-plugin": "^8.46.2",
 | 
						|
        "@typescript-eslint/parser": "^8.46.2",
 | 
						|
        "@vscode/test-cli": "^0.0.12",
 | 
						|
        "@vscode/test-electron": "^2.5.2",
 | 
						|
        "eslint": "^9.39.0",
 | 
						|
        "typescript": "^5.9.3"
 | 
						|
    },
 | 
						|
    "engines": {
 | 
						|
        "vscode": "^1.105.0"
 | 
						|
    },
 | 
						|
    "icon": "icon.png",
 | 
						|
    "extensionKind": [
 | 
						|
        "ui",
 | 
						|
        "workspace"
 | 
						|
    ]
 | 
						|
}
 |