-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
144 lines (144 loc) · 3.66 KB
/
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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"private": true,
"name": "twind-intellisense",
"displayName": "Twind Intellisense",
"description": "Intelligent Twind tooling for VS Code",
"version": "0.2.1",
"preview": true,
"publisher": "sastan",
"icon": "assets/logo.png",
"galleryBanner": {
"color": "#fcfcfc",
"theme": "light"
},
"bugs": "https://github.com/tw-in-js/vscode-twind-intellisense/issues",
"repository": "github:tw-in-js/vscode-twind-intellisense",
"license": "MIT",
"author": "Sascha Tandel (https://github.com/sastan)",
"engines": {
"vscode": "^1.53.0"
},
"keywords": [
"twind",
"tailwind",
"tailwindcss",
"css",
"intellisense",
"autocomplete",
"vscode"
],
"categories": [
"Linters",
"Other"
],
"extensionDependencies": [
"vscode.typescript-language-features"
],
"extensionKind": [
"workspace",
"ui"
],
"activationEvents": [
"onCommand:twind.restart",
"onStartupFinished"
],
"contributes": {
"typescriptServerPlugins": [
{
"name": "@twind/typescript-plugin",
"enableForWorkspaceTypeScriptVersions": true
}
],
"commands": [
{
"command": "twind.restart",
"title": "Twind: Restart IntelliSense"
},
{
"command": "twind.className",
"title": "Twind: Replace className strings"
}
],
"configuration": [
{
"id": "twind",
"title": "Twind",
"properties": {
"twind.tags": {
"type": "array",
"description": "List of template tags to enable Twind intellisense in.",
"items": {
"type": "string",
"description": "Tag name."
},
"default": [
"tw",
"apply"
]
},
"twind.attributes": {
"type": "array",
"description": "List of html/jsx attributes to enable Twind intellisense in.",
"items": {
"type": "string",
"description": "Attribute name."
},
"default": [
"tw",
"className",
"class"
]
},
"twind.styles": {
"type": "array",
"description": "List of style/styled functions to enable Twind intellisense in.",
"items": {
"type": "string",
"description": "Style function name."
},
"default": [
"style",
"styled"
]
},
"twind.debug": {
"type": "boolean",
"description": "Enable/disable additional debug information.",
"default": false
},
"twind.enable": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether Twind intellisense is enabled or not."
}
}
}
]
},
"dependencies": {
"@twind/typescript-plugin": "0.3.5"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "yarn run build",
"build": "esbuild src/extension.ts --outdir=out --bundle --format=cjs --platform=node --sourcemap=external --target=node10.9 --external:vscode",
"watch": "yarn run build --watch",
"pretest": "yarn run build && yarn run lint",
"release": "npx np",
"version": "npx vsce package"
},
"devDependencies": {
"@types/node": "^12.11.7",
"@types/vscode": "^1.53.0",
"esbuild": "^0.9.6",
"typescript": "^4.1.3",
"vscode-test": "^1.5.0"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
}
}