Skip to content

Commit

Permalink
0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanahiro committed Jan 3, 2025
1 parent 9c7349b commit dd5162d
Showing 1 changed file with 86 additions and 86 deletions.
172 changes: 86 additions & 86 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,87 +1,87 @@
{
"name": "maplibre-vscode-extension",
"displayName": "MapLibre",
"description": "",
"publisher": "kiguchi",
"version": "0.0.15",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": "*style.json",
"url": "./schema/style.json"
}
],
"commands": [
{
"command": "maplibre.launch_viewer",
"title": "MapLibre: Launch Viewer"
}
],
"menus": {
"explorer/context": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
],
"editor/title": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"build-json-schema": "ts-json-schema-generator --path node_modules/@maplibre/maplibre-gl-style-spec/dist/index.d.ts --type 'StyleSpecification' > schema/style.json",
"prepare": "npm run build-json-schema"
},
"icon": "icon.png",
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^20.3.0"
}
}
"name": "maplibre-vscode-extension",
"displayName": "MapLibre",
"description": "",
"publisher": "kiguchi",
"version": "0.0.16",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": "*style.json",
"url": "./schema/style.json"
}
],
"commands": [
{
"command": "maplibre.launch_viewer",
"title": "MapLibre: Launch Viewer"
}
],
"menus": {
"explorer/context": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
],
"editor/title": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
],
"editor/title/context": [
{
"command": "maplibre.launch_viewer",
"when": "resourceFilename =~ /.*style\\.json$/",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "npm run check-types && npm run lint && node esbuild.js",
"watch": "npm-run-all -p watch:*",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "npm run check-types && npm run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"build-json-schema": "ts-json-schema-generator --path node_modules/@maplibre/maplibre-gl-style-spec/dist/index.d.ts --type 'StyleSpecification' > schema/style.json",
"prepare": "npm run build-json-schema"
},
"icon": "icon.png",
"devDependencies": {
"@types/geojson": "^7946.0.14",
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.92.0",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.11.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"esbuild": "^0.21.5",
"eslint": "^8.57.0",
"npm-run-all": "^4.1.5",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@maplibre/maplibre-gl-style-spec": "^20.3.0"
}
}

0 comments on commit dd5162d

Please sign in to comment.