@scaffoldly/rowdy 0.0.2-1-beta.20251010211137.acd4c49 → 0.0.2-1-beta.20251011143634.08bc5fc
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +22814 -22800
- package/package.json +16 -2
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaffoldly/rowdy",
|
|
3
3
|
"description": "Scaffoldly Serverless Router",
|
|
4
|
-
"version": "0.0.2-1-beta.
|
|
4
|
+
"version": "0.0.2-1-beta.20251011143634.08bc5fc",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"prestart": "yarn build:app",
|
|
33
33
|
"build": "yarn build:exe",
|
|
34
34
|
"build:app": "tsup src/index.ts --sourcemap inline --dts --format cjs --target esnext --cjsInterop --shims",
|
|
35
|
-
"build:exe": "yarn build:app && pkg
|
|
35
|
+
"build:exe": "yarn build:app && pkg .",
|
|
36
36
|
"start": "yarn build:app && node dist/index.js",
|
|
37
37
|
"start:dev": "tsx src/index.ts",
|
|
38
38
|
"clean": "rm -rf dist",
|
|
@@ -103,5 +103,19 @@
|
|
|
103
103
|
"yaml": "^2.8.1",
|
|
104
104
|
"yargs": "17"
|
|
105
105
|
},
|
|
106
|
+
"pkg": {
|
|
107
|
+
"bin": "dist/index.js",
|
|
108
|
+
"scripts": "dist/**/*.js",
|
|
109
|
+
"assets": "dist/**/*",
|
|
110
|
+
"targets": [
|
|
111
|
+
"node22-macos-x64",
|
|
112
|
+
"node22-macos-arm64",
|
|
113
|
+
"node22-linuxstatic-x64",
|
|
114
|
+
"node22-linuxstatic-arm64"
|
|
115
|
+
],
|
|
116
|
+
"outputPath": "bin",
|
|
117
|
+
"compress": "Brotli",
|
|
118
|
+
"public": true
|
|
119
|
+
},
|
|
106
120
|
"dependencies": {}
|
|
107
121
|
}
|