-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
169 lines (169 loc) · 4.2 KB
/
package.json
File metadata and controls
169 lines (169 loc) · 4.2 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "transform-to-tailwindcss",
"type": "module",
"version": "0.0.56",
"packageManager": "pnpm@10.33.0",
"description": "🎨 Revolutionary CSS-to-TailwindCSS migration tool with surgical precision. Transform legacy stylesheets to utility-first classes instantly across Vue, React, Svelte, and Astro projects.",
"author": {
"name": "Simon He",
"email": "simon.he95@gmail.com",
"url": "https://github.com/Simon-He95"
},
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/Simon-He95"
},
{
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/simon_he95"
},
{
"type": "individual",
"url": "https://github.com/Simon-He95/sponsor"
}
],
"homepage": "https://github.com/Simon-He95/transformToTailwindcss#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Simon-He95/transformToTailwindcss.git"
},
"bugs": {
"url": "https://github.com/Simon-He95/transformToTailwindcss/issues"
},
"keywords": [
"transform-to-tailwindcss",
"tailwindcss",
"css-transform",
"utility-first",
"css-migration",
"vue",
"react",
"svelte",
"astro",
"vite-plugin",
"webpack-plugin",
"rollup-plugin",
"esbuild-plugin",
"css-preprocessor",
"sass",
"less",
"stylus",
"performance",
"optimization",
"developer-tools",
"build-tools",
"css-to-tailwind",
"legacy-css",
"modern-css",
"automated-migration",
"code-transformation",
"frontend-tooling",
"css-utilities",
"responsive-design",
"atomic-css"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"bin": {
"totailwindcss": "./cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown ./src/index.ts ./src/cli.ts",
"dev": "npm run build -- --watch src",
"format": "prettier --write --cache .",
"lint": "eslint . --cache",
"lint:fix": "pnpm run lint --fix",
"play": "pnpm run -C playground dev",
"play:build": "pnpm run -C playground build",
"preview": "pnpm run -C playground preview",
"prepublishOnly": "npm run build",
"release": "bumpp && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"less": "^3.0.0 || ^4.0.0",
"less-plugin-module-resolver": "^1.0.0",
"sass": "^1.0.0",
"stylus": "^0.50.0 || ^0.60.0"
},
"peerDependenciesMeta": {
"less": {
"optional": true
},
"less-plugin-module-resolver": {
"optional": true
},
"sass": {
"optional": true
},
"stylus": {
"optional": true
}
},
"dependencies": {
"@babel/core": "catalog:",
"@rollup/pluginutils": "catalog:",
"@unocss/core": "catalog:",
"@unocss/preset-uno": "catalog:",
"@vue/babel-plugin-jsx": "catalog:",
"@vue/compiler-sfc": "catalog:",
"fast-glob": "catalog:",
"node-html-parser": "catalog:",
"transform-to-tailwindcss-core": "catalog:",
"unplugin": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@simon_he/clack-prompts": "catalog:",
"@simon_he/colorize": "catalog:",
"@types/babel__core": "catalog:",
"@types/less": "catalog:",
"@types/node": "catalog:",
"@types/stylus": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"find-up": "catalog:",
"less": "catalog:",
"less-plugin-module-resolver": "catalog:",
"lint-staged": "catalog:",
"picocolors": "catalog:",
"prettier": "catalog:",
"sass": "catalog:",
"simple-git-hooks": "catalog:",
"stylus": "catalog:",
"transform-to-tailwindcss": "catalog:",
"tsdown": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"lint-staged": {
"*": [
"prettier --write --cache --ignore-unknown"
],
"*.{vue,js,ts,jsx,tsx,md,json}": "eslint . --fix"
}
}