@scaffoldly/rowdy 0.0.2-1-beta.20250930234754.ffd57d3
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/LICENSE.md +105 -0
- package/README.md +3 -0
- package/dist/index.d.ts +39 -0
- package/dist/index.js +33713 -0
- package/package.json +109 -0
package/package.json
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@scaffoldly/rowdy",
|
|
3
|
+
"description": "Scaffoldly Serverless Router",
|
|
4
|
+
"version": "0.0.2-1-beta.20250930234754.ffd57d3",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/**/*.js",
|
|
9
|
+
"dist/**/*.d.ts",
|
|
10
|
+
"dist/**/*.js.map"
|
|
11
|
+
],
|
|
12
|
+
"bin": {
|
|
13
|
+
"rowdy": "dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/scaffoldly/rowdy.git"
|
|
18
|
+
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/scaffoldly/rowdy/issues"
|
|
21
|
+
},
|
|
22
|
+
"author": "Scaffoldly <github.com/scaffoldly>",
|
|
23
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
24
|
+
"private": false,
|
|
25
|
+
"engines": {
|
|
26
|
+
"node": ">=20",
|
|
27
|
+
"yarn": ">=1.22.0",
|
|
28
|
+
"npm": ">=10"
|
|
29
|
+
},
|
|
30
|
+
"engineStrict": false,
|
|
31
|
+
"scripts": {
|
|
32
|
+
"prestart": "yarn build:app",
|
|
33
|
+
"build": "yarn build:exe",
|
|
34
|
+
"build:app": "tsup src/index.ts --sourcemap inline --dts --format cjs --target esnext --cjsInterop",
|
|
35
|
+
"build:exe": "yarn build:app && pkg dist/index.js --compress Brotli --output dist/app",
|
|
36
|
+
"start": "yarn build:app && node dist/server.js",
|
|
37
|
+
"start:dev": "tsx src/server.ts",
|
|
38
|
+
"clean": "rm -rf dist",
|
|
39
|
+
"prepublishOnly": "yarn clean && yarn build",
|
|
40
|
+
"lint": "eslint .",
|
|
41
|
+
"lint:fix": "eslint . --fix",
|
|
42
|
+
"jest": "NODE_OPTIONS='--experimental-vm-modules --trace-warnings' jest",
|
|
43
|
+
"test": "yarn jest -- --testTimeout=30000"
|
|
44
|
+
},
|
|
45
|
+
"prettier": {
|
|
46
|
+
"semi": true,
|
|
47
|
+
"trailingComma": "es5",
|
|
48
|
+
"singleQuote": true,
|
|
49
|
+
"printWidth": 120,
|
|
50
|
+
"tabWidth": 2,
|
|
51
|
+
"useTabs": false
|
|
52
|
+
},
|
|
53
|
+
"jest": {
|
|
54
|
+
"projects": [
|
|
55
|
+
{
|
|
56
|
+
"displayName": "unit",
|
|
57
|
+
"preset": "ts-jest",
|
|
58
|
+
"transform": {
|
|
59
|
+
"^.+\\.tsx?$": [
|
|
60
|
+
"ts-jest",
|
|
61
|
+
{
|
|
62
|
+
"tsconfig": "tests/tsconfig.json"
|
|
63
|
+
}
|
|
64
|
+
]
|
|
65
|
+
},
|
|
66
|
+
"testEnvironment": "node",
|
|
67
|
+
"roots": [
|
|
68
|
+
"<rootDir>/tests"
|
|
69
|
+
],
|
|
70
|
+
"testMatch": [
|
|
71
|
+
"**/*.test.ts"
|
|
72
|
+
],
|
|
73
|
+
"moduleNameMapper": {
|
|
74
|
+
"^@src$": "<rootDir>/src/index.ts"
|
|
75
|
+
},
|
|
76
|
+
"globalSetup": "<rootDir>/tests/setup.ts",
|
|
77
|
+
"globalTeardown": "<rootDir>/tests/teardown.ts"
|
|
78
|
+
}
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"devDependencies": {
|
|
82
|
+
"@aws-sdk/client-secrets-manager": "^3.891.0",
|
|
83
|
+
"@eslint/js": "^9.28.0",
|
|
84
|
+
"@types/aws-lambda": "^8.10.152",
|
|
85
|
+
"@types/data-urls": "^3.0.4",
|
|
86
|
+
"@types/jest": "^30.0.0",
|
|
87
|
+
"@types/node": ">=20.0.0 <25.0.0",
|
|
88
|
+
"@types/whatwg-encoding": "^2.0.3",
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^8.0.0",
|
|
90
|
+
"@typescript-eslint/parser": "^8.0.0",
|
|
91
|
+
"@yao-pkg/pkg": "^6.6.0",
|
|
92
|
+
"axios": "^1.12.2",
|
|
93
|
+
"data-urls": "^6.0.0",
|
|
94
|
+
"eslint": "^9.0.0",
|
|
95
|
+
"eslint-config-prettier": "^10.1.5",
|
|
96
|
+
"eslint-plugin-prettier": "^5.4.1",
|
|
97
|
+
"globals": "^16.2.0",
|
|
98
|
+
"jest": "^30.1.3",
|
|
99
|
+
"path-to-regexp": "^8.3.0",
|
|
100
|
+
"prettier": "^3.0.0",
|
|
101
|
+
"rxjs": "^7.8.2",
|
|
102
|
+
"ts-jest": "^29.1.0",
|
|
103
|
+
"ts-node": "^10.9.2",
|
|
104
|
+
"tsup": "^8.5.0",
|
|
105
|
+
"typescript": "^5.0.0",
|
|
106
|
+
"whatwg-encoding": "^3.1.1"
|
|
107
|
+
},
|
|
108
|
+
"dependencies": {}
|
|
109
|
+
}
|