-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 795 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "tailwind-pre-processor",
"version": "0.0.1",
"author": "xiaoluoboding <xiaoluoboding@gmail.com>",
"description": "An implementation of tailwindcss using less / stylus / Sass/SCSS.",
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"lessc": "lessc assets/styles/less/index.less > assets/styles/less/tailwindless.css",
"stylc": "stylus assets/styles/stylus/index.styl -m -o assets/styles/stylus/tailwindstylus.css",
"sassc": "sass assets/styles/sass/index.scss assets/styles/sass/tailwindsass.css"
},
"dependencies": {
"vue": "^3.0.5",
"vue-router": "^4.0.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.1.2",
"@vue/compiler-sfc": "^3.0.5",
"tailwindcss": "^1.9.6",
"vite": "^2.0.0-beta.49"
}
}