diff --git a/package-lock.json b/package-lock.json index 0a95379..9cbf4ec 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,22 +1,22 @@ { "name": "vscodestat", - "version": "0.0.1", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscodestat", - "version": "0.0.1", + "version": "1.0.3", "devDependencies": { "@types/mocha": "^10.0.6", - "@types/node": "18.x", + "@types/node": "20.x", "@types/vscode": "^1.87.0", - "@typescript-eslint/eslint-plugin": "^7.4.0", - "@typescript-eslint/parser": "^7.4.0", - "@vscode/test-cli": "^0.0.8", + "@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.3.3" + "typescript": "^5.4.3" }, "engines": { "vscode": "^1.87.0" @@ -321,9 +321,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.19.29", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", - "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "version": "20.12.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.12.4.tgz", + "integrity": "sha512-E+Fa9z3wSQpzgYQdYmme5X3OTuejnnTx88A6p6vkkJosR3KBz+HpE3kqNm98VE6cfLFcISx7zW7MsJkH6KwbTw==", "dev": true, "dependencies": { "undici-types": "~5.26.4" @@ -538,9 +538,9 @@ "dev": true }, "node_modules/@vscode/test-cli": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.8.tgz", - "integrity": "sha512-sBSMSDzJChiiDjmys2Q6uI4SIoUYf0t6oDsQO3ypaQ7udha9YD4e2On9e9VE5OBayZMpxbgJX+NudmCwJMdOIg==", + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@vscode/test-cli/-/test-cli-0.0.9.tgz", + "integrity": "sha512-vsl5/ueE3Jf0f6XzB0ECHHMsd5A0Yu6StElb8a+XsubZW7kHNAOw4Y3TSSuDzKEpLnJ92nbMy1Zl+KLGCE6NaA==", "dev": true, "dependencies": { "@types/mocha": "^10.0.2", @@ -555,6 +555,9 @@ }, "bin": { "vscode-test": "out/bin.mjs" + }, + "engines": { + "node": ">=18" } }, "node_modules/@vscode/test-electron": { diff --git a/package.json b/package.json index 5442c66..e1da7ea 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,8 @@ { "name": "vscodestat", "displayName": "vscodestat", + "version": "1.0.3", "description": "", - "version": "1.0.1", - "engines": { - "vscode": "^1.87.0" - }, "categories": [ "Other" ], @@ -13,10 +10,15 @@ "type": "git", "url": "ssh://git@gitea.raphaelpiccolo.com:10022/root/vscodestat.git" }, - "activationEvents": [ - "onStartupFinished" - ], "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": [ { @@ -43,23 +45,18 @@ } } }, - "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": "vscode-test" - }, "devDependencies": { - "@types/vscode": "^1.87.0", "@types/mocha": "^10.0.6", - "@types/node": "18.x", - "@typescript-eslint/eslint-plugin": "^7.4.0", - "@typescript-eslint/parser": "^7.4.0", + "@types/node": "20.x", + "@types/vscode": "^1.87.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.3.3", - "@vscode/test-cli": "^0.0.8", - "@vscode/test-electron": "^2.3.9" + "typescript": "^5.4.3" + }, + "engines": { + "vscode": "^1.87.0" } }