-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.11 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.11 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
{
"name": "gamehub-lite-api",
"version": "1.0.0",
"description": "GameHub Lite API build system",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc && node dist/index.js build",
"sync": "tsc && node dist/index.js sync",
"validate": "tsc && node dist/index.js validate",
"diff": "tsc && node dist/index.js diff",
"import-gamehub-xml": "tsc && node dist/scripts/import-gamehub-xml.js",
"release-assets:check": "tsc && node dist/scripts/release-assets.js check",
"release-assets:check-deep": "tsc && node dist/scripts/release-assets.js check --download-existing",
"release-assets:upload-new": "tsc && node dist/scripts/release-assets.js upload-new",
"release-assets:replace-changed": "tsc && node dist/scripts/release-assets.js replace-changed",
"release-assets:repair": "tsc && node dist/scripts/release-assets.js repair",
"convert-drivers": "tsc && node dist/scripts/convert-drivers.js",
"compile": "tsc",
"dev": "tsc --watch"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18"
}
}