-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 926 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 926 Bytes
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
{
"name": "wings-api",
"version": "1.0.0",
"scripts": {
"build": "rm -rf lib && esbuild `find generator-src \\( -name '*.ts' -o -name '*.tsx' \\)` --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' && esbuild generator-src/index.ts --platform='node' --sourcemap --ignore-annotations --format='cjs' --target='es2022' --outdir='lib' --banner:js='require(\"module-alias\").addAlias(\"@\", __dirname);'",
"generate": "pnpm build && cd lib && NODE_ENV=development node --enable-source-maps index && cd .."
},
"keywords": [],
"author": "Calagopus",
"license": "MIT",
"dependencies": {
"change-case": "^5.4.4",
"module-alias": "^2.3.4",
"openapi3-ts": "^4.5.0"
},
"devDependencies": {
"@types/node": "^24.12.0",
"esbuild": "^0.27.4",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}