tailwind-ctp-intellisense/package.json

85 lines
2.3 KiB
JSON
Raw Normal View History

2018-04-19 20:18:23 +00:00
{
"name": "vscode-tailwindcss",
2018-05-07 16:28:22 +00:00
"displayName": "Tailwind CSS IntelliSense",
"description": "Tailwind CSS class name completion",
2019-05-16 20:13:57 +00:00
"version": "0.2.0",
2018-04-19 20:18:23 +00:00
"publisher": "bradlc",
"engines": {
2018-12-28 18:38:12 +00:00
"vscode": "^1.30.0"
2018-04-19 20:18:23 +00:00
},
2018-08-21 12:10:52 +00:00
"categories": [
"Other"
],
2018-08-21 12:42:10 +00:00
"galleryBanner": {
"color": "#f1f5f8"
2018-08-21 12:42:10 +00:00
},
2019-05-16 20:13:57 +00:00
"icon": "resources/icon.png",
2018-05-07 16:28:22 +00:00
"keywords": [
"tailwind",
"tailwindcss",
"css",
"intellisense",
2018-05-28 16:56:39 +00:00
"autocomplete",
"vscode"
2018-05-07 16:28:22 +00:00
],
2018-04-19 20:18:23 +00:00
"activationEvents": [
"workspaceContains:**/{tailwind,tailwind.config,tailwind-config,.tailwindrc}.js"
2018-04-19 20:18:23 +00:00
],
2019-01-10 23:43:44 +00:00
"main": "./dist/index.js",
2018-08-28 19:39:39 +00:00
"contributes": {
"grammars": [
{
"scopeName": "source.css.tailwind",
2019-05-16 20:13:57 +00:00
"path": "./resources/syntaxes/tailwind.tmLanguage.json",
2018-08-28 19:39:39 +00:00
"injectTo": [
"source.css",
"source.css.scss",
"source.css.less",
"source.css.postcss"
]
}
2018-12-28 18:38:12 +00:00
],
2019-05-16 20:13:57 +00:00
"configuration": {
"type": "object",
"title": "Tailwind CSS IntelliSense configuration",
"properties": {
"tailwindCSS.emmetCompletions": {
"type": "boolean",
"default": false,
"description": "Enable class name completions for Emmet-style syntax"
2018-12-28 18:38:12 +00:00
}
}
2019-05-16 20:13:57 +00:00
}
2018-08-28 19:39:39 +00:00
},
2018-05-07 16:28:22 +00:00
"preview": true,
2018-04-19 20:18:23 +00:00
"scripts": {
2018-12-18 19:27:33 +00:00
"vscode:prepublish": "npm run build",
2019-05-16 20:13:57 +00:00
"build": "ncc build src/index.ts --out dist --minify --external vscode && ncc build src/server.ts --out dist/server --minify",
2019-01-10 23:43:44 +00:00
"watch": "ncc build src/index.ts --out dist --watch --external vscode",
2019-05-16 20:13:57 +00:00
"start": "npm run watch",
2018-04-19 20:18:23 +00:00
"postinstall": "node ./node_modules/vscode/bin/install",
2018-12-18 19:27:33 +00:00
"test": "npm run build && node ./node_modules/vscode/bin/test"
2018-05-07 16:28:22 +00:00
},
2019-05-16 20:13:57 +00:00
"author": "Brad Cornes <hello@bradley.dev>",
2018-08-21 12:10:52 +00:00
"license": "MIT",
"homepage": "https://github.com/bradlc/vscode-tailwindcss/blob/master/README.md",
2018-05-07 16:28:22 +00:00
"bugs": {
"url": "https://github.com/bradlc/vscode-tailwindcss/issues",
2019-05-16 20:13:57 +00:00
"email": "hello@bradley.dev"
2018-05-07 16:28:22 +00:00
},
"repository": {
"type": "git",
"url": "https://github.com/bradlc/vscode-tailwindcss.git"
2018-12-18 19:27:33 +00:00
},
2019-05-16 20:13:57 +00:00
"devDependencies": {
"@types/node": "^11.13.5",
"@zeit/ncc": "^0.17.4",
2018-12-28 18:38:12 +00:00
"color": "^3.1.0",
"dlv": "^1.1.2",
2019-05-16 20:13:57 +00:00
"tailwindcss-language-server": "0.0.1",
2018-12-28 18:38:12 +00:00
"tmp": "0.0.33",
2019-05-16 20:13:57 +00:00
"vscode": "^1.1.26",
2018-12-18 19:27:33 +00:00
"vscode-languageclient": "^5.2.1"
2018-04-19 20:18:23 +00:00
}
}