-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
125 lines (125 loc) · 3.08 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
{
"publisher": "simonhe",
"name": "to-tailwindcss",
"displayName": "To Tailwindcss",
"version": "0.0.32",
"packageManager": "[email protected]",
"description": "Vscode extension transform css to tailwindcss",
"author": "Simon He <https://github.com/Simon-He95>",
"license": "MIT",
"funding": "https://github.com/sponsors/Simon-He95",
"homepage": "https://github.com/Simon-He95/vscode-toTailwindcss#readme",
"repository": {
"type": "git",
"url": "https://github.com/Simon-He95/vscode-toTailwindcss"
},
"bugs": {
"url": "https://github.com/Simon-He95/vscode-toTailwindcss/issues"
},
"sponsor": {
"url": "https://github.com/Simon-He95/sponsor"
},
"categories": [
"Other"
],
"main": "./dist/index.js",
"icon": "icon.png",
"engines": {
"vscode": "^1.84.2"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"submenus": [
{
"id": "totailwind",
"label": "totailwind"
}
],
"menus": {
"editor/context": [
{
"submenu": "totailwind",
"group": "6_px"
}
],
"totailwind": [
{
"command": "totailwind.InlineStyleToTailwindcss",
"when": "editorHasSelection"
},
{
"command": "totailwind.openTailwindPlayground"
},
{
"command": "totailwind.openPlayground"
},
{
"command": "totailwind.ToTailwind"
}
]
},
"commands": [
{
"command": "totailwind.ToTailwind",
"title": "page -> Tailwindcss"
},
{
"command": "totailwind.InlineStyleToTailwindcss",
"title": "style -> Tailwindcss"
},
{
"command": "totailwind.openTailwindPlayground",
"title": "openTailwindPlayground"
},
{
"command": "totailwind.openPlayground",
"title": "openPlayground"
}
],
"keybindings": [
{
"command": "totailwind.transform",
"key": "cmd+alt+x",
"when": "isMac"
},
{
"command": "totailwind.transform",
"key": "ctrl+alt+x",
"when": "!isMac"
}
]
},
"scripts": {
"dev": "pnpm build --watch",
"test": "vitest",
"build": "tsup src/index.ts --external vscode",
"pack": "vsce package --no-dependencies",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"publish": "vsce publish --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp && pnpm run publish"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@types/node": "^18.18.11",
"@types/vscode": "^1.84.2",
"@vscode-use/createwebview": "^0.0.13",
"@vscode-use/utils": "^0.1.39",
"@vscode/vsce": "^3.2.1",
"@vue/compiler-sfc": "^3.4.3",
"bumpp": "^9.2.0",
"eslint": "^9.18.0",
"fast-glob": "^3.3.2",
"pnpm": "^8.10.5",
"rimraf": "^4.4.1",
"svelte": "^4.2.8",
"transform-to-tailwindcss": "^0.0.26",
"transform-to-tailwindcss-core": "^0.0.19",
"tsup": "^6.7.0",
"typescript": "^5.3.2",
"vitest": "^0.29.8"
}
}