From 6fe024eddd265d2fb01ed67ce29ad82a206152c2 Mon Sep 17 00:00:00 2001 From: root Date: Sat, 6 Apr 2024 00:30:47 +0200 Subject: [PATCH] up --- package.json | 124 ++++++++++++++++++++++++++------------------------- 1 file changed, 63 insertions(+), 61 deletions(-) diff --git a/package.json b/package.json index 1b833f4..214faad 100644 --- a/package.json +++ b/package.json @@ -1,65 +1,67 @@ { - "name": "vscodestat", - "displayName": "vscodestat", - "version": "1.0.4", - "description": "", - "categories": [ - "Other" - ], - "repository": { - "type": "git", - "url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/vscodestat.git" - }, - "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" - } + "name": "vscodestat", + "displayName": "vscodestat", + "version": "1.0.4", + "description": "", + "categories": [ + "Other" ], - "configuration": { - "title": "vscodestat", - "properties": { - "vscodestat.url": { - "type": "string", - "default": "https://example.com", - "description": "Specifies the url of the server to store the events" + "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.6", + "@types/node": "20.x", + "@types/vscode": "^1.88.0", + "@typescript-eslint/eslint-plugin": "^7.5.0", + "@typescript-eslint/parser": "^7.5.0", + "@vscode/test-cli": "^0.0.9", + "@vscode/test-electron": "^2.3.9", + "eslint": "^8.57.0", + "typescript": "^5.4.4" + }, + "engines": { + "vscode": "^1.87.0" } - }, - "activationEvents": [ - "onStartupFinished" - ], - "devDependencies": { - "@types/mocha": "^10.0.6", - "@types/node": "20.x", - "@types/vscode": "^1.88.0", - "@typescript-eslint/eslint-plugin": "^7.5.0", - "@typescript-eslint/parser": "^7.5.0", - "@vscode/test-cli": "^0.0.9", - "@vscode/test-electron": "^2.3.9", - "eslint": "^8.57.0", - "typescript": "^5.4.4" - }, - "engines": { - "vscode": "^1.87.0" - } -} +} \ No newline at end of file