blob: 8944093e0701ee2d88eece4ca19aa508ada59028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{
"name": "gleam-wechat-dev-tools",
"version": "1.0.0",
"description": "build wechat miniprogram with gleam",
"scripts": {
"build": "gleam run -m build",
"watch": "WECHAT_BUILD_WATCH=1 gleam run -m build",
"purge": "gleam clean && rm -rf dist/*",
"clean": "rm -rf dist/*"
},
"author": "Kai WU",
"license": "MIT",
"dependencies": {
"esbuild": "^0.23.0",
"esbuild-plugin-less": "^1.3.8",
"less": "^4.2.0"
}
}
|