-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 964 Bytes
/
package.json
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
{
"name": "vscode-tailwindcss",
"displayName": "Tailwind CSS Autocomplete for Visual Studio Code",
"description": "",
"version": "0.1.0",
"publisher": "sidharthachatterjee",
"repository": {
"type": "git",
"url": "https://github.com/sidharthachatterjee/vscode-tailwindcss"
},
"icon": "logo.png",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"*"
],
"main": "src/extension",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"vscode": "^1.1.6"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"lodash": "^4.17.11"
},
"license": "MIT",
"author": {
"name": "Sidhartha Chatterjee",
"url": "http://github.com/sidharthachatterjee"
},
"keywords": [
"vscode-extension",
"tailwindcss"
]
}