pag-player
Version:
pag预览插件
82 lines (81 loc) • 1.93 kB
JSON
{
"name": "pag-player",
"publisher": "yezi",
"repository": {
"type": "git",
"url": ""
},
"displayName": "PAG Player",
"description": "pag预览插件",
"version": "0.0.2",
"engines": {
"vscode": "^1.78.0"
},
"keywords": [
"pag",
"preview",
"player"
],
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "pag-preview.helloWorld",
"title": "Hello World"
},
{
"command": "pag-preview.fileDetail",
"title": "Show PAG File Detail",
"category": "PAG Viewer"
}
],
"customEditors": [
{
"viewType": "pag-preview.editor",
"displayName": "PAG Viewer",
"selector": [
{
"filenamePattern": "*.pag"
}
],
"priority": "default"
}
]
},
"scripts": {
"vscode:prepublish": "npm run package",
"publish": "vsce package && vsce publish",
"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/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/vscode": "^1.98.0",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"copy-webpack-plugin": "^13.0.0",
"eslint": "^9.21.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"vsce": "^2.15.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"engine": {
"vscode": "^1.78.0",
"node": ">=18.0.0"
}
}