-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 3.73 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 3.73 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@scaffoldly/rowdy",
"description": "Scaffoldly Serverless Router",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map"
],
"bin": {
"rowdy": "dist/index.js"
},
"homepage": "https://rowdy.run",
"repository": {
"type": "git",
"url": "git+https://github.com/scaffoldly/rowdy.git"
},
"bugs": {
"url": "https://github.com/scaffoldly/rowdy/issues"
},
"author": "Scaffoldly <github.com/scaffoldly>",
"license": "SEE LICENSE IN LICENSE.md",
"private": false,
"engines": {
"node": ">=20",
"yarn": ">=1.22.0",
"npm": ">=10"
},
"engineStrict": false,
"scripts": {
"prestart": "yarn build:app",
"build": "yarn build:exe",
"build:app": "tsup src/index.ts --sourcemap inline --dts --format cjs --target esnext --cjsInterop --shims",
"build:exe": "yarn build:app && pkg .",
"start": "yarn build:app && node dist/index.js",
"start:dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"jest": "NODE_OPTIONS='--experimental-vm-modules --trace-warnings' jest",
"test": "yarn jest -- --testTimeout=30000 --verbose",
"rowdy": "tsx src/index.ts"
},
"prettier": {
"semi": true,
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 120,
"tabWidth": 2,
"useTabs": false
},
"jest": {
"projects": [
{
"displayName": "unit",
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/tests/**/*.test.ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tests/tsconfig.json"
}
]
},
"moduleNameMapper": {
"^@scaffoldly/rowdy$": "<rootDir>/src/index.ts"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.ts"
]
}
]
},
"devDependencies": {
"@aws-sdk/client-ecr": "^3.891.0",
"@aws-sdk/client-iam": "^3.891.0",
"@aws-sdk/client-lambda": "^3.891.0",
"@aws-sdk/client-secrets-manager": "^3.891.0",
"@aws-sdk/client-sts": "^3.891.0",
"@aws-sdk/protocol-http": "^3.374.0",
"@aws-sdk/signature-v4": "^3.374.0",
"@bufbuild/protobuf": "^2.10.0",
"@connectrpc/connect": "^2.1.0",
"@eslint/js": "^9.28.0",
"@scaffoldly/rowdy-cdk": "^0.1.0-beta.20251118143037.9cb23d3",
"@scaffoldly/rowdy-grpc": "^0.1.0-beta.20251202230436.0a51800",
"@types/auth-header": "^1.0.6",
"@types/aws-lambda": "^8.10.152",
"@types/data-urls": "^3.0.4",
"@types/jest": "^30.0.0",
"@types/node": ">=20.0.0 <25.0.0",
"@types/promise-retry": "^1.1.6",
"@types/whatwg-encoding": "^2.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@yao-pkg/pkg": "^6.6.0",
"auth-header": "^1.0.0",
"axios": "^1.12.2",
"data-urls": "^6.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"execa": "8",
"globals": "^16.2.0",
"internal-ip": "^8.0.1",
"jest": "^30.1.3",
"path-to-regexp": "^8.3.0",
"prettier": "^3.0.0",
"promise-retry": "^2.0.1",
"rxjs": "^7.8.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.0.0",
"whatwg-encoding": "^3.1.1",
"yaml": "^2.8.1",
"yargs": "17"
},
"pkg": {
"bin": "dist/index.js",
"scripts": "dist/**/*.js",
"assets": "dist/**/*",
"targets": [
"linuxstatic"
],
"outputPath": "bin",
"compress": "Brotli",
"public": true
},
"dependencies": {}
}