Home

tailwind-ctp-intellisense @b7f9046644a51e968d2afd9c9f0946af298c634e - refs - log -
-
https://git.jolheiser.com/tailwind-ctp-intellisense.git
Tailwind intellisense + Catppuccin
tailwind-ctp-intellisense / package.json
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
  "name": "vscode-tailwindcss",
  "displayName": "Tailwind CSS IntelliSense",
  "description": "Tailwind CSS class name completion",
  "version": "0.1.16",
  "publisher": "bradlc",
  "engines": {
    "vscode": "^1.30.0"
  },
  "categories": [
    "Other"
  ],
  "galleryBanner": {
    "color": "#f1f5f8"
  },
  "icon": "icon.png",
  "keywords": [
    "tailwind",
    "tailwindcss",
    "css",
    "intellisense",
    "autocomplete",
    "vscode"
  ],
  "activationEvents": [
    "workspaceContains:**/{tailwind,tailwind.config,tailwind-config,.tailwindrc}.js"
  ],
  "source": "./src/extension.ts",
  "main": "./dist/extension.js",
  "contributes": {
    "grammars": [
      {
        "scopeName": "source.css.tailwind",
        "path": "./syntaxes/tailwind.tmLanguage.json",
        "injectTo": [
          "source.css",
          "source.css.scss",
          "source.css.less",
          "source.css.postcss"
        ]
      }
    ],
    "views": {
      "explorer": [
        {
          "id": "tailwindcssConfigExplorer",
          "name": "Tailwind CSS Configuration"
        }
      ]
    },
    "commands": [
      {
        "command": "tailwindcss.goToDefinition",
        "title": "Go To Definition"
      }
    ]
  },
  "preview": true,
  "scripts": {
    "vscode:prepublish": "npm run build",
    "build": "microbundle -f cjs --external vscode,child_process,os,crypto,net",
    "watch": "npm run build -- --watch",
    "postinstall": "node ./node_modules/vscode/bin/install",
    "test": "npm run build && node ./node_modules/vscode/bin/test"
  },
  "author": "Brad Cornes <bradlc41@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/bradlc/vscode-tailwindcss/blob/master/README.md",
  "bugs": {
    "url": "https://github.com/bradlc/vscode-tailwindcss/issues",
    "email": "bradlc41@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/bradlc/vscode-tailwindcss.git"
  },
  "dependencies": {
    "color": "^3.1.0",
    "dlv": "^1.1.2",
    "tmp": "0.0.33",
    "vscode-languageclient": "^5.2.1"
  },
  "devDependencies": {
    "microbundle": "^0.8.4",
    "vscode": "^1.1.26"
  }
}