-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.59 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
{
"version": "0.2.0",
"type": "module",
"name": "vscode-tailwindcss-syntax-highlighting",
"displayName": "Syntax Highlighting for Tailwind CSS",
"description": "Adds syntax highlighting for tailwindcss classes in html and jsx or tsx files.",
"license": "MIT",
"author": "Roger Schönbächler",
"homepage": "https://github.com/schoero/vscode-tailwindcss-syntax-highlighting#readme",
"repository": {
"type": "git",
"url": "https://github.com/schoero/vscode-tailwindcss-syntax-highlighting.git"
},
"bugs": {
"url": "https://github.com/schoero/vscode-tailwindcss-syntax-highlighting/issues"
},
"scripts": {
"eslint": "eslint .",
"eslint:ci": "npm run eslint -- --max-warnings 0",
"eslint:fix": "npm run eslint -- --fix",
"lint": "npm run eslint && npm run markdownlint",
"lint:ci": "npm run eslint:ci && npm run markdownlint:ci",
"lint:fix": "npm run eslint:fix && npm run markdownlint:fix",
"markdownlint": "markdownlint-cli2 '**/*.md' '#node_modules'",
"markdownlint:ci": "npm run markdownlint",
"markdownlint:fix": "npm run markdownlint -- --fix",
"postrelease": "eslint --fix package.json && markdownlint-cli2-fix 'CHANGELOG.md'",
"prerelease": "npm run lint && npm run spellcheck ",
"publish": "source .env && changelogen gh release && vsce publish -p $MARKETPLACE_TOKEN",
"release": "changelogen --bump --output",
"spellcheck": "cspell lint",
"spellcheck:ci": "npm run spellcheck -- --no-progress",
"typecheck": "tsc --noEmit",
"watch": "tsc -w"
},
"engines": {
"vscode": "^1.74.0"
},
"devDependencies": {
"@schoero/configs": "^1.1.0",
"changelogen": "^0.5.5",
"cspell": "^8.14.2",
"eslint": "^9.9.1",
"markdownlint": "^0.34.0",
"vsce": "^2.15.0"
},
"keywords": [
"tailwind",
"css",
"tailwindcss",
"typescript",
"javascript",
"js",
"ts",
"jsx",
"tsx",
"html",
"syntax",
"highlighting"
],
"volta": {
"node": "22.7.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"grammars": [
{
"embeddedLanguages": {
"meta.tag.html": "html",
"meta.tag.js": "js",
"meta.tag.jsx": "jsx",
"meta.tag.ts": "ts",
"meta.tag.tsx": "tsx"
},
"injectTo": [
"source.js",
"source.jsx",
"source.ts",
"source.tsx",
"text.html"
],
"path": "./syntaxes/tailwindcss.tmLanguage.json",
"scopeName": "source.tailwindcss"
}
]
},
"icon": "assets/icon.png",
"publisher": "schoero"
}