contra/plugin/vscode/package.json
2023-11-15 20:05:24 +01:00

53 lines
1.2 KiB
JSON

{
"name": "contra",
"displayName": "Contra",
"description": "",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "https://github.com/agvxov/contra"
},
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "contra.cycle",
"title": "Cycle"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package --skip-license --allow-missing-repository --allow-star-activation"
},
"devDependencies": {
"@types/mocha": "^10.0.3",
"@types/node": "18.x",
"@types/vscode": "^1.84.0",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vscode/test-electron": "^2.3.6",
"eslint": "^8.52.0",
"glob": "^10.3.10",
"mocha": "^10.2.0",
"typescript": "^5.2.2"
},
"license": "GPL-3.0",
"dependencies": {
"@vscode/vsce": "^2.22.0",
"vsce": "^2.15.0"
}
}