mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
62 lines
1.4 KiB
JSON
62 lines
1.4 KiB
JSON
{
|
|
"name": "vscode-rocket",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Build your site right inside vscode",
|
|
"main": "./out/extension.js",
|
|
"engines": {
|
|
"vscode": "^1.62.0"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc -p ./",
|
|
"lint": "eslint src --ext ts",
|
|
"pretest": "npm run compile && npm run lint",
|
|
"test": "node ./out/test/runTest.js",
|
|
"vscode:prepublish": "npm run compile",
|
|
"watch": "tsc -watch -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob": "^7.1.4",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "14.x",
|
|
"@types/vscode": "^1.62.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.1.0",
|
|
"@typescript-eslint/parser": "^5.1.0",
|
|
"@vscode/test-electron": "^1.6.2",
|
|
"eslint": "^8.1.0",
|
|
"glob": "^7.1.7",
|
|
"mocha": "^9.1.3",
|
|
"typescript": "^4.6.0-dev.20211126"
|
|
},
|
|
"activationEvents": [
|
|
"onView:rocket.previewView",
|
|
"onCommand:helloworld.helloWorld",
|
|
"onCommand:helloworld.start"
|
|
],
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"contributes": {
|
|
"views": {
|
|
"explorer": [
|
|
{
|
|
"type": "webview",
|
|
"id": "rocket.previewView",
|
|
"name": "Rocket"
|
|
}
|
|
]
|
|
},
|
|
"commands": [
|
|
{
|
|
"command": "helloworld.helloWorld",
|
|
"title": "Hello World"
|
|
},
|
|
{
|
|
"command": "helloworld.start",
|
|
"title": "Web Dev Server: start"
|
|
}
|
|
]
|
|
},
|
|
"displayName": "Rocket"
|
|
}
|