Files
github-local-actions/package.json
Sanjula Ganepola 0d5ab6ae00 add views
Signed-off-by: Sanjula Ganepola <sanjulagane@gmail.com>
2024-09-24 23:47:26 -04:00

90 lines
2.2 KiB
JSON

{
"name": "github-local-actions",
"displayName": "GitHub Local Actions",
"description": "Run your GitHub Actions locally!",
"icon": "icon.png",
"author": {
"name": "Sanjula Ganepola",
"url": "https://github.com/sanjulaganepola"
},
"publisher": "SanjulaGanepola",
"license": "Apache-2.0",
"version": "0.0.1",
"repository": {
"url": "https://github.com/SanjulaGanepola/github-local-actions"
},
"homepage": "https://github.com/SanjulaGanepola/github-local-actions/blob/main/README.md",
"bugs": {
"url": "https://github.com/SanjulaGanepola/github-local-actions/issues"
},
"keywords": [
"GitHub Actions"
],
"categories": [
"Other"
],
"engines": {
"vscode": "^1.93.0"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "github-local-actions-container",
"title": "GitHub Local Actions",
"icon": "$(robot)"
}
]
},
"views": {
"github-local-actions-container": [
{
"id": "status",
"name": "Status"
},
{
"id": "workflows",
"name": "Workflows"
},
{
"id": "events",
"name": "Events"
},
{
"id": "settings",
"name": "Settings"
}
]
},
"commands": [
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.1",
"typescript": "^5.5.4",
"ts-loader": "^9.5.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1"
}
}