-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.05 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.05 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
{
"name": "@iracing-data/sync-car-assets-cli",
"main": "dist/index.js",
"bin": {
"sync-iracing-car-assets": "dist/index.js"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:executable": "pnpm --parallel --stream '/^build:executable:.+$/'",
"build:executable:macos": "./scripts/build-executable-macos.sh",
"build:executable:windows": "./scripts/build-executable-windows.sh",
"bundle": "esbuild src/index.ts --bundle --platform=node --tsconfig=tsconfig.build.json --outfile=build/index.cjs --format=cjs",
"codegen": "pnpm codegen:openapi:types",
"codegen:openapi:types": "openapi-typescript ../../openapi/iracing-oauth.json -o src/generated/openapi.ts",
"test:ts": "tsc --noEmit"
},
"dependencies": {
"@iracing-data/api-client-fetch": "workspace:*",
"@iracing-data/sync-car-assets": "workspace:*",
"commander": "^14.0.2",
"openapi-fetch": "^0.17.0"
},
"devDependencies": {
"@commander-js/extra-typings": "^14.0.0",
"esbuild": "^0.27.0",
"openapi-typescript": "7.10.1"
}
}