-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 882 Bytes
/
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
{
"version": "3.0.7",
"name": "luss",
"description": "A less tookit",
"homepage": "https://github.com/ccwq/luss",
"devDependencies": {
"gulp": "^4.0.0",
"gulp-less": "^4.0.1",
"gulp-minify-css": "^1.2.4",
"gulp-rename": "^1.4.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "6.0.0-alpha.1",
"rimraf": "^2.6.3",
"typescript": "^4.7.4",
"unocss": "^0.41.1"
},
"dependencies": {
"gulp-clean-css": "^4.3.0"
},
"scripts": {
"build": "gulp build-less && tsc -p tsconfig.json",
"watch": "gulp watch-less",
"publish major": "npm run build && snpm version major && snpm publish",
"publish minor": "npm run build && snpm version minor && snpm publish",
"publish patch": "npm run build && snpm version patch && snpm publish"
}
}