2018-04-19 20:18:23 +00:00
{
2020-11-03 11:02:30 +00:00
"name" : "vscode-tailwindcss" ,
2021-05-03 17:00:04 +00:00
"displayName" : "Tailwind CSS IntelliSense" ,
"description" : "Intelligent Tailwind CSS tooling for VS Code" ,
"preview" : true ,
"author" : "Brad Cornes <hello@bradley.dev>" ,
"license" : "MIT" ,
"version" : "0.5.9" ,
"homepage" : "https://github.com/tailwindlabs/tailwindcss-intellisense" ,
"bugs" : {
"url" : "https://github.com/tailwindlabs/tailwindcss-intellisense/issues" ,
"email" : "hello@bradley.dev"
} ,
"repository" : {
"type" : "git" ,
"url" : "https://github.com/tailwindlabs/tailwindcss-intellisense.git"
} ,
"publisher" : "bradlc" ,
"keywords" : [
"tailwind" ,
"tailwindcss" ,
"css" ,
"intellisense" ,
"autocomplete" ,
"vscode"
2020-12-07 15:21:45 +00:00
] ,
2021-05-03 17:00:04 +00:00
"engines" : {
"vscode" : "^1.33.0"
} ,
"categories" : [
"Linters" ,
"Other"
] ,
"galleryBanner" : {
"color" : "#f9fafb"
} ,
"icon" : "media/icon.png" ,
"activationEvents" : [
"onStartupFinished"
] ,
"main" : "dist/extension/index.js" ,
"contributes" : {
"commands" : [
{
"command" : "tailwindCSS.showOutput" ,
2021-05-04 14:05:52 +00:00
"title" : "Tailwind CSS: Show Output" ,
"enablement" : "tailwindCSS.hasOutputChannel"
2021-05-03 17:00:04 +00:00
}
] ,
"grammars" : [
{
"scopeName" : "tailwindcss.injection" ,
"path" : "./syntaxes/tailwind.tmLanguage.json" ,
"injectTo" : [
"source.css" ,
"source.css.scss" ,
"source.css.less" ,
"source.css.postcss" ,
"source.vue" ,
"source.svelte" ,
"text.html"
]
}
] ,
"configuration" : {
"title" : "Tailwind CSS IntelliSense" ,
"properties" : {
"tailwindCSS.emmetCompletions" : {
"type" : "boolean" ,
"default" : false ,
"markdownDescription" : "Enable class name completions when using Emmet-style syntax, for example `div.bg-red-500.uppercase`"
} ,
"tailwindCSS.includeLanguages" : {
"type" : "object" ,
"additionalProperties" : {
"type" : "string"
} ,
"default" : { } ,
"markdownDescription" : "Enable features in languages that are not supported by default. Add a mapping here between the new language and an already supported language.\n E.g.: `{\"plaintext\": \"html\"}`"
} ,
"tailwindCSS.colorDecorators" : {
2021-05-04 11:17:06 +00:00
"type" : "boolean" ,
"default" : true ,
2021-05-03 17:00:04 +00:00
"markdownDescription" : "Controls whether the editor should render inline color decorators for Tailwind CSS classes and helper functions." ,
"scope" : "language-overridable"
} ,
"tailwindCSS.validate" : {
"type" : "boolean" ,
"default" : true ,
"markdownDescription" : "Enable linting. Rules can be configured individually using the `tailwindcss.lint.*` settings" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.cssConflict" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "warning" ,
"markdownDescription" : "Class names on the same HTML element which apply the same CSS property or properties" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.invalidApply" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
"markdownDescription" : "Unsupported use of the [`@apply` directive](https://tailwindcss.com/docs/functions-and-directives/#apply)" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.invalidScreen" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
"markdownDescription" : "Unknown screen name used with the [`@screen` directive](https://tailwindcss.com/docs/functions-and-directives/#screen)" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.invalidVariant" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
"markdownDescription" : "Unknown variant name used with the [`@variants` directive](https://tailwindcss.com/docs/functions-and-directives/#variants)" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.invalidConfigPath" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
"markdownDescription" : "Unknown or invalid path used with the [`theme` helper](https://tailwindcss.com/docs/functions-and-directives/#theme)" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.lint.invalidTailwindDirective" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
"markdownDescription" : "Unknown value used with the [`@tailwind` directive](https://tailwindcss.com/docs/functions-and-directives/#tailwind)" ,
"scope" : "language-overridable"
} ,
2021-05-05 13:56:54 +00:00
"tailwindCSS.lint.recommendedVariantOrder" : {
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "warning" ,
"markdownDescription" : "Class variants not in the recommended order (applies in [JIT mode](https://tailwindcss.com/docs/just-in-time-mode) only)" ,
"scope" : "language-overridable"
} ,
2021-05-03 17:00:04 +00:00
"tailwindCSS.experimental.classRegex" : {
"type" : "array" ,
"scope" : "language-overridable"
} ,
"tailwindCSS.showPixelEquivalents" : {
"type" : "boolean" ,
"default" : true ,
"markdownDescription" : "Show `px` equivalents for `rem` CSS values."
} ,
"tailwindCSS.rootFontSize" : {
"type" : "number" ,
"default" : 16 ,
"markdownDescription" : "Root font size in pixels. Used to convert `rem` CSS values to their `px` equivalents. See `#tailwindCSS.showPixelEquivalents#`."
}
}
}
} ,
"scripts" : {
"dev" : "glob-exec --foreach --parallel \"src/*.ts\" -- \"ncc build {{file}} --watch -o dist/{{file.toString().replace(/^src\\//, '').replace(/\\.ts$/, '')}}\"" ,
"build" : "glob-exec --foreach --parallel \"src/*.ts\" -- \"ncc build {{file}} -o dist/{{file.toString().replace(/^src\\//, '').replace(/\\.ts$/, '')}}\"" ,
"minify" : "glob-exec --foreach --parallel \"dist/**/*.js\" -- \"terser {{file}} --compress --mangle --output {{file.toString()}}\"" ,
"package" : "vsce package" ,
"publish" : "vsce publish" ,
"vscode:prepublish" : "npm run clean && npm run build && npm run minify" ,
"clean" : "rimraf dist" ,
"test" : "jest"
} ,
"dependencies" : {
"@ctrl/tinycolor" : "3.1.4" ,
"@types/debounce" : "1.2.0" ,
"@types/mocha" : "5.2.0" ,
"@types/node" : "14.14.34" ,
"@types/vscode" : "1.54.0" ,
"@vercel/ncc" : "0.28.4" ,
"builtin-modules" : "3.2.0" ,
"chokidar" : "3.5.1" ,
"debounce" : "1.2.0" ,
"dlv" : "1.1.3" ,
"dset" : "2.0.1" ,
"enhanced-resolve" : "5.8.0" ,
"fast-glob" : "3.2.4" ,
"find-up" : "5.0.0" ,
"glob-exec" : "0.1.1" ,
"jest" : "25.5.4" ,
"klona" : "2.0.4" ,
"normalize-path" : "3.0.0" ,
"pkg-up" : "3.1.0" ,
"postcss" : "8.2.6" ,
"postcss-load-config" : "3.0.1" ,
"postcss-selector-parser" : "6.0.2" ,
"prettier" : "^2.2.1" ,
"rimraf" : "3.0.2" ,
"semver" : "7.3.2" ,
"stack-trace" : "0.0.10" ,
"tailwindcss" : "2.0.3" ,
"terser" : "4.6.12" ,
"typescript" : "4.2.4" ,
"vsce" : "1.87.0" ,
"vscode-languageclient" : "7.0.0" ,
"vscode-languageserver" : "7.0.0" ,
"vscode-languageserver-textdocument" : "1.0.1" ,
"vscode-uri" : "3.0.2"
} ,
2020-12-07 15:21:45 +00:00
"devDependencies" : {
2021-05-03 17:00:04 +00:00
"@types/moo" : "0.5.3" ,
"css.escape" : "1.5.1" ,
"detect-indent" : "6.0.0" ,
"line-column" : "1.0.2" ,
"moo" : "0.5.1" ,
"multi-regexp2" : "1.0.3" ,
"sift-string" : "0.0.2" ,
"vscode-emmet-helper-bundled" : "0.0.1"
2020-12-07 15:21:45 +00:00
}
2018-04-19 20:18:23 +00:00
}