{
	"name": "vscode-zipfs",
	"private": true,
	"license": "BSD-2-Clause",
	"publisher": "arcanis",
	"displayName": "ZipFS - a zip file system",
	"description": "Allows to easily inspect and modify files stored within zip archives.",
	"homepage": "https://github.com/yarnpkg/berry/blob/master/packages/vscode-zipfs",
	"icon": "icon.png",
	"version": "3.0.0",
	"engines": {
		"vscode": "^1.54.0",
		"node": ">=14.15.0"
	},
	"categories": [
		"Other"
	],
	"activationEvents": [
		"workspaceContains:**/*.zip",
		"onLanguage:zip",
		"onFileSystem:zip",
		"onCommand:zipfs.mountZipFile",
		"onCommand:zipfs.mountZipEditor",
		"onStartupFinished"
	],
	"main": "./build/index.js",
	"sideEffects": false,
	"contributes": {
		"languages": [
			{
				"id": "zip",
				"aliases": [
					"Zip Archive",
					"ZIP"
				],
				"extensions": [
					".zip"
				]
			}
		],
		"commands": [
			{
				"command": "zipfs.mountZipFile",
				"title": "Mount Zip",
				"category": "Zip"
			},
			{
				"command": "zipfs.unmountZipFile",
				"title": "Unmount Zip",
				"category": "Zip"
			},
			{
				"command": "zipfs.mountZipEditor",
				"title": "Mount the current file as a workspace",
				"category": "Zip"
			}
		],
		"menus": {
			"explorer/context": [
				{
					"when": "resourceLangId == zip && !explorerResourceIsRoot",
					"command": "zipfs.mountZipFile",
					"group": "navigation"
				},
				{
					"when": "resourceLangId == zip && explorerResourceIsRoot",
					"command": "zipfs.unmountZipFile",
					"group": "navigation"
				}
			],
			"commandPalette": [
				{
					"when": "false",
					"command": "zipfs.mountZipFile"
				},
				{
					"when": "false",
					"command": "zipfs.unmountZipFile"
				},
				{
					"when": "editorLangId == zip",
					"command": "zipfs.mountZipEditor"
				}
			]
		}
	},
	"devDependencies": {
		"@rollup/plugin-commonjs": "^21.0.1",
		"@rollup/plugin-node-resolve": "^11.0.1",
		"@types/vscode": "^1.54.0",
		"@yarnpkg/fslib": "workspace:^",
		"@yarnpkg/libzip": "workspace:^",
		"esbuild": "npm:esbuild-wasm@^0.11.20",
		"rollup": "^2.59.0",
		"rollup-plugin-esbuild": "^3.0.2",
		"rollup-plugin-terser": "^7.0.2",
		"vsce": "^1.85.1"
	},
	"scripts": {
		"vscode:prepublish": "run build",
		"package:vscode-zipfs": "run package",
		"package": "run vsce package --yarn",
		"build:vscode-zipfs": "run build",
		"build": "rollup -c",
		"watch": "NODE_ENV=development rollup -cw",
		"code": "code --extensionDevelopmentPath=\"$(pwd)\" \"$(pwd)\""
	},
	"repository": {
		"type": "git",
		"url": "ssh://git@github.com/yarnpkg/berry.git",
		"directory": "packages/vscode-zipfs"
	},
	"dependencies": {
		"tslib": "^1.13.0"
	},
	"__metadata": {
		"installedTimestamp": 1749365210719,
		"targetPlatform": "undefined",
		"size": 383598
	}
}