blob: 89c717146a69e9eab0fd20fe77ec7babe5fd6d69 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{
"name": "gleam-njs",
"version": "1.0.0",
"description": "write nginx scripts (njs) with gleam",
"scripts": {
"build": "gleam run",
"watch": "NJS_BUILD_WATCH=1 gleam run",
"purge": "gleam clean && rm -rf dist/*",
"clean": "rm -rf dist/*"
},
"author": "Kai WU",
"license": "MIT",
"dependencies": {
"esbuild": "^0.23.0",
"weakmap-polyfill": "^2.0.4"
}
}
|