{
	"name": "vscode-css-variables",
	"version": "2.8.3",
	"displayName": "CSS Variable Autocomplete",
	"description": "Autocomplete CSS Variable support CSS, SCSS, LESS, PostCSS, VueJS, ReactJS and more",
	"publisher": "vunguyentuan",
	"engines": {
		"vscode": "^1.106.0",
		"node": ">=20.0.0",
		"npm": ">=10.0.0"
	},
	"keywords": [
		"cssvariable",
		"css-variable",
		"css-var",
		"variable",
		"less",
		"sass",
		"css",
		"intellisense",
		"autocomplete",
		"vscode"
	],
	"categories": [
		"Other"
	],
	"activationEvents": [
		"onStartupFinished"
	],
	"icon": "icon/css.png",
	"repository": {
		"type": "git",
		"url": "https://github.com/vunguyentuan/vscode-css-variables.git"
	},
	"main": "./dist/index.js",
	"contributes": {
		"configuration": {
			"title": "CSS Variables",
			"properties": {
				"cssVariables.lookupFiles": {
					"type": "array",
					"markdownDescription": "Configure glob patterns for including files and folders. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
					"default": [
						"**/*.css",
						"**/*.scss",
						"**/*.sass",
						"**/*.less"
					],
					"scope": 3,
					"additionalProperties": {
						"anyOf": [
							{
								"type": "array",
								"properties": {
									"when": {
										"type": "string",
										"pattern": "\\w*\\$\\(basename\\)\\w*",
										"default": "$(basename).ext",
										"description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name."
									}
								}
							}
						]
					}
				},
				"cssVariables.languages": {
					"type": "array",
					"markdownDescription": "Configure the languages for which the extension should be activated. Read more about language identifiers [here](https://code.visualstudio.com/docs/languages/identifiers#_known-language-identifiers).",
					"default": [
						"astro",
						"svelte",
						"vue",
						"vue-html",
						"vue-postcss",
						"scss",
						"postcss",
						"less",
						"css",
						"html",
						"javascript",
						"javascriptreact",
						"typescript",
						"typescriptreact",
						"source.css.styled"
					],
					"scope": 3
				},
				"cssVariables.blacklistFolders": {
					"type": "array",
					"markdownDescription": "Configure glob patterns for excluding files and folders. The extension will not scan variables in these files and folders. Read more about glob patterns [here](https://code.visualstudio.com/docs/editor/codebasics#_advanced-search-options).",
					"default": [
						"**/.git",
						"**/.svn",
						"**/.hg",
						"**/CVS",
						"**/.DS_Store",
						"**/node_modules",
						"**/bower_components",
						"**/tmp",
						"**/dist",
						"**/tests"
					],
					"scope": 3,
					"additionalProperties": {
						"anyOf": [
							{
								"type": "array",
								"properties": {
									"when": {
										"type": "string",
										"pattern": "\\w*\\$\\(basename\\)\\w*",
										"default": "$(basename).ext",
										"description": "Additional check on the siblings of a matching file. Use $(basename) as variable for the matching file name."
									}
								}
							}
						]
					}
				},
				"cssVariables.trace.server": {
					"scope": "window",
					"type": "string",
					"enum": [
						"off",
						"messages",
						"verbose"
					],
					"default": "off",
					"description": "Traces the communication between VS Code and the language server."
				}
			}
		}
	},
	"scripts": {
		"vscode:prepublish": "npm run build",
		"build": "tsup",
		"dev": "tsup --watch",
		"clean": "rm -rf dist && rm -rf out && rm -rf .vscode-test",
		"lint": "eslint ./src --ext .ts,.tsx --fix",
		"pretest": "tsc -p ./ && rm -f .vscode-test/user-",
		"test": "node ./out/test/runTest.js",
		"deploy": "@vscode/vsce publish",
		"package": "@vscode/vsce package --pre-release"
	},
	"devDependencies": {
		"@types/jest": "^30.0.0",
		"@types/less": "^3.0.8",
		"@types/mocha": "^10.0.10",
		"@types/node": "^24.10.1",
		"@types/postcss-less": "^4.0.7",
		"@types/vscode": "^1.106.1",
		"@typescript-eslint/eslint-plugin": "^7.18.0",
		"@typescript-eslint/parser": "^7.18.0",
		"@vscode/test-electron": "^2.5.2",
		"@vscode/vsce": "^3.7.0",
		"css-variables-language-server": "*",
		"eslint": "^8.57.1",
		"eslint-config-airbnb-typescript": "^18.0.0",
		"jest": "^30.2.0",
		"jest-environment-node-single-context": "^29.4.0",
		"mocha": "^11.7.5",
		"ts-jest": "^29.4.5",
		"tsup": "^8.5.1",
		"typescript": "^5.9.3",
		"vscode-languageclient": "^9.0.1"
	},
	"__metadata": {
		"id": "3f96fda8-094b-4817-97fb-a7eab7a8f5e0",
		"publisherDisplayName": "Vu Nguyen",
		"publisherId": "411219bd-68b8-4df2-9a3b-1ac214fcfd05",
		"isPreReleaseVersion": false
	},
	"dependencies": {
		"axios": "^1.13.2",
		"culori": "^4.0.2",
		"fast-glob": "^3.3.3",
		"less": "^4.4.2",
		"line-column": "^1.0.2",
		"postcss": "^8.5.6",
		"postcss-less": "^6.0.0",
		"postcss-scss": "^4.0.9",
		"sass": "^1.94.2",
		"vscode-languageserver": "^9.0.1",
		"vscode-languageserver-textdocument": "^1.0.12",
		"vscode-uri": "^3.1.0"
	}
}
