2018-04-19 20:18:23 +00:00
{
2020-05-03 14:57:15 +00:00
"name" : "vscode-tailwindcss" ,
"displayName" : "Tailwind CSS IntelliSense" ,
2020-06-23 15:17:36 +00:00
"description" : "Intelligent Tailwind CSS tooling for VS Code" ,
2020-05-03 14:57:15 +00:00
"preview" : true ,
"author" : "Brad Cornes <hello@bradley.dev>" ,
"license" : "MIT" ,
2020-08-25 20:38:06 +00:00
"version" : "0.4.3" ,
2020-06-23 17:14:20 +00:00
"homepage" : "https://github.com/tailwindcss/intellisense" ,
2020-06-11 14:59:49 +00:00
"bugs" : {
2020-06-23 17:14:20 +00:00
"url" : "https://github.com/tailwindcss/intellisense/issues" ,
2020-06-11 14:59:49 +00:00
"email" : "hello@bradley.dev"
} ,
2020-05-03 14:57:15 +00:00
"repository" : {
"type" : "git" ,
2020-06-23 17:14:20 +00:00
"url" : "https://github.com/tailwindcss/intellisense.git"
2020-05-03 14:57:15 +00:00
} ,
"publisher" : "bradlc" ,
"keywords" : [
"tailwind" ,
"tailwindcss" ,
"css" ,
"intellisense" ,
"autocomplete" ,
"vscode"
] ,
"engines" : {
"vscode" : "^1.33.0"
} ,
"categories" : [
2020-06-23 17:14:20 +00:00
"Linters" ,
2020-05-03 14:57:15 +00:00
"Other"
] ,
"galleryBanner" : {
2020-06-23 18:12:55 +00:00
"color" : "#f9fafb"
2020-05-03 14:57:15 +00:00
} ,
"icon" : "media/icon.png" ,
"activationEvents" : [
"workspaceContains:**/{tailwind,tailwind.config,tailwind-config,.tailwindrc}.js"
] ,
"main" : "dist/extension/index.js" ,
"contributes" : {
"grammars" : [
{
"scopeName" : "tailwindcss.injection" ,
"path" : "./syntaxes/tailwind.tmLanguage.json" ,
"injectTo" : [
"source.css" ,
"source.css.scss" ,
"source.css.less" ,
"source.css.postcss" ,
"source.vue" ,
2020-05-17 15:51:55 +00:00
"source.svelte" ,
"text.html"
2020-05-03 14:57:15 +00:00
]
}
] ,
"configuration" : {
"title" : "Tailwind CSS IntelliSense" ,
"properties" : {
"tailwindCSS.emmetCompletions" : {
"type" : "boolean" ,
"default" : false ,
2020-06-12 11:39:41 +00:00
"markdownDescription" : "Enable class name completions when using Emmet-style syntax, for example `div.bg-red-500.uppercase`"
2020-05-03 17:11:45 +00:00
} ,
"tailwindCSS.includeLanguages" : {
"type" : "object" ,
2020-06-12 11:39:41 +00:00
"additionalProperties" : {
"type" : "string"
} ,
2020-06-11 15:45:58 +00:00
"default" : { } ,
2020-06-12 11:39:41 +00:00
"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\"}`"
2020-06-12 15:22:04 +00:00
} ,
2020-08-14 15:21:49 +00:00
"tailwindCSS.colorDecorators" : {
"type" : "string" ,
"enum" : [
"inherit" ,
"on" ,
"off"
] ,
"markdownEnumDescriptions" : [
2020-08-18 14:50:16 +00:00
"Color decorators are rendered if `editor.colorDecorators` is enabled." ,
2020-08-14 15:21:49 +00:00
"Color decorators are rendered." ,
"Color decorators are not rendered."
] ,
"default" : "inherit" ,
"markdownDescription" : "Controls whether the editor should render inline color decorators for Tailwind CSS classes and helper functions." ,
2020-08-12 17:45:36 +00:00
"scope" : "language-overridable"
} ,
2020-06-12 15:22:04 +00:00
"tailwindCSS.validate" : {
"type" : "boolean" ,
"default" : true ,
2020-06-23 18:30:51 +00:00
"markdownDescription" : "Enable linting. Rules can be configured individually using the `tailwindcss.lint.*` settings" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 15:22:04 +00:00
} ,
2020-06-23 11:22:31 +00:00
"tailwindCSS.lint.cssConflict" : {
2020-06-12 15:22:04 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "warning" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Class names on the same HTML element which apply the same CSS property or properties" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 15:22:04 +00:00
} ,
2020-06-16 15:29:08 +00:00
"tailwindCSS.lint.invalidApply" : {
2020-06-12 15:22:04 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Unsupported use of the [`@apply` directive](https://tailwindcss.com/docs/functions-and-directives/#apply)" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 15:41:49 +00:00
} ,
2020-06-16 15:29:08 +00:00
"tailwindCSS.lint.invalidScreen" : {
2020-06-12 15:41:49 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Unknown screen name used with the [`@screen` directive](https://tailwindcss.com/docs/functions-and-directives/#screen)" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 15:56:02 +00:00
} ,
2020-06-16 15:29:08 +00:00
"tailwindCSS.lint.invalidVariant" : {
2020-06-12 15:56:02 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Unknown variant name used with the [`@variants` directive](https://tailwindcss.com/docs/functions-and-directives/#variants)" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 16:16:54 +00:00
} ,
2020-06-16 15:29:08 +00:00
"tailwindCSS.lint.invalidConfigPath" : {
2020-06-12 16:16:54 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Unknown or invalid path used with the [`theme` helper](https://tailwindcss.com/docs/functions-and-directives/#theme)" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-06-12 16:34:59 +00:00
} ,
2020-06-16 15:29:08 +00:00
"tailwindCSS.lint.invalidTailwindDirective" : {
2020-06-12 16:34:59 +00:00
"type" : "string" ,
"enum" : [
"ignore" ,
"warning" ,
"error"
] ,
"default" : "error" ,
2020-06-23 09:24:53 +00:00
"markdownDescription" : "Unknown value used with the [`@tailwind` directive](https://tailwindcss.com/docs/functions-and-directives/#tailwind)" ,
2020-06-15 13:31:04 +00:00
"scope" : "language-overridable"
2020-05-03 14:57:15 +00:00
}
}
}
} ,
2018-04-19 20:18:23 +00:00
"scripts" : {
2020-05-03 14:57:15 +00:00
"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" ,
"vscode:prepublish" : "npm run clean && npm run build && npm run minify" ,
"clean" : "rimraf dist" ,
"test" : "jest"
2018-12-18 19:27:33 +00:00
} ,
2019-05-16 20:13:57 +00:00
"devDependencies" : {
2020-05-03 14:57:15 +00:00
"@ctrl/tinycolor" : "^3.1.0" ,
2020-08-21 12:44:24 +00:00
"@types/debounce" : "^1.2.0" ,
2020-05-03 14:57:15 +00:00
"@types/mocha" : "^5.2.0" ,
2020-05-16 18:10:17 +00:00
"@types/moo" : "^0.5.3" ,
2020-05-03 14:57:15 +00:00
"@types/node" : "^13.9.3" ,
"@types/vscode" : "^1.32.0" ,
"@zeit/ncc" : "^0.22.0" ,
"callsite" : "^1.0.0" ,
"chokidar" : "^3.3.1" ,
"concurrently" : "^5.1.0" ,
"css.escape" : "^1.5.1" ,
2020-08-21 12:44:24 +00:00
"debounce" : "^1.2.0" ,
2020-06-17 17:34:53 +00:00
"detect-indent" : "^6.0.0" ,
2020-05-03 14:57:15 +00:00
"dlv" : "^1.1.3" ,
"dset" : "^2.0.1" ,
"esm" : "^3.2.25" ,
2020-06-24 10:55:17 +00:00
"fast-glob" : "^3.2.4" ,
2020-05-03 14:57:15 +00:00
"glob-exec" : "^0.1.1" ,
"globalyzer" : "^0.1.4" ,
"globrex" : "^0.1.2" ,
"import-from" : "^3.0.0" ,
"jest" : "^25.5.4" ,
"line-column" : "^1.0.2" ,
2020-05-09 16:24:56 +00:00
"mitt" : "^1.2.0" ,
2020-05-03 14:57:15 +00:00
"mkdirp" : "^1.0.3" ,
2020-05-16 18:10:17 +00:00
"moo" : "^0.5.1" ,
2020-06-24 10:55:17 +00:00
"normalize-path" : "^3.0.0" ,
2020-05-03 14:57:15 +00:00
"pkg-up" : "^3.1.0" ,
"postcss" : "^7.0.27" ,
"postcss-selector-parser" : "^6.0.2" ,
2020-06-16 09:41:26 +00:00
"resolve-from" : "^5.0.0" ,
2020-05-03 14:57:15 +00:00
"rimraf" : "^3.0.2" ,
"semver" : "^7.3.2" ,
2020-06-18 13:53:20 +00:00
"sift-string" : "0.0.2" ,
2020-05-03 14:57:15 +00:00
"stack-trace" : "0.0.10" ,
"terser" : "^4.6.12" ,
"tiny-invariant" : "^1.1.0" ,
"tslint" : "^5.16.0" ,
"typescript" : "^3.8.3" ,
2020-06-11 16:03:41 +00:00
"vsce" : "^1.76.1" ,
2020-05-03 14:57:15 +00:00
"vscode-emmet-helper-bundled" : "0.0.1" ,
"vscode-languageclient" : "^5.2.1" ,
"vscode-languageserver" : "^5.2.1" ,
"vscode-uri" : "^2.1.1"
2018-04-19 20:18:23 +00:00
}
}