-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.77 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
{
"name": "tailwind-vscode-suggestions-for-csser",
"displayName": "TailwindCSS Suggestion for CSSer",
"description": "Suggest TailwindCSS class name from css property name",
"author": "Tomokatsu Iguchi <[email protected]>",
"contributors": [
"Tomokatsu Iguchi <[email protected]>",
"ym-darake <[email protected]>",
"Gyo Tamura <[email protected]>"
],
"license": "MIT",
"version": "0.0.3",
"homepage": "https://github.com/igtm/vscode-tailwind-suggestions-for-csser",
"bugs": {
"url": "https://github.com/igtm/vscode-tailwind-suggestions-for-csser/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/igtm/vscode-tailwind-suggestions-for-csser.git"
},
"publisher": "igtm",
"keywords": [
"tailwind",
"tailwindcss",
"css",
"intellisense",
"autocomplete",
"vscode"
],
"engines": {
"vscode": "^1.81.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"galleryBanner": {
"color": "#487cca"
},
"icon": "media/icon.png",
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "TailwindCSS Suggestion for CSSer",
"properties": {
"tailwindCSSForCSSer.additionalLanguages.classAttributes": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "Enable features in languages that are not supported by default in class attributes."
},
"tailwindCSSForCSSer.additionalLanguages.atApply": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "Enable features in languages that are not supported by default after @apply."
},
"tailwindCSSForCSSer.disableLanguages.classAttributes": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "Disable features in languages that are supported by default in class attributes. (e.g. `html` `typescriptreact` etc..)"
},
"tailwindCSSForCSSer.disableLanguages.atApply": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "Disable features in languages that are supported by default after @apply. (e.g. `html` `typescriptreact` etc..)"
},
"tailwindCSSForCSSer.suggestions.classAttributes": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable autocomplete suggestions in class attributes."
},
"tailwindCSSForCSSer.suggestions.atApply": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable autocomplete suggestions after @apply."
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test:unit": "jest ./src/**/*.test.ts --watch",
"test:vscode": "node ./out/test/runTest.js",
"build": "vsce package"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.4",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
"@types/vscode": "^1.81.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "^2.3.2",
"eslint": "^8.41.0",
"glob": "^8.1.0",
"jest": "^29.6.4",
"mocha": "^10.2.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.3",
"vsce": "^2.15.0"
}
}