-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.12 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
{
"name": "@gamemaker/gm-cli",
"author": "YoYo Games",
"description": "The GameMaker command-line interface GM-CLI is a helpful tool to edit, compile, package, and run your GameMaker projects.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/YoYoGames/gm-cli"
},
"type": "module",
"version": "1.0.4",
"files": [
"dist",
"NOTICE"
],
"bin": {
"gm-cli": "dist/cli.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"prebuild": "tsc -p tsconfig.json",
"build": "tsup --silent",
"prepublishOnly": "pnpm run build",
"lint:eslint": "eslint --max-warnings 0",
"lint:prettier": "prettier --check . --ignore-path .gitignore --ignore-path .prettierignore",
"lint:tsc": "tsc -p tsconfig.json",
"lint": "run-p lint:*",
"fix:eslint": "eslint --fix --max-warnings 0",
"fix:prettier": "prettier --write . --ignore-path .gitignore --ignore-path .prettierignore",
"fix": "run-p fix:*",
"gen:ggbe-api": "node ./src/commands/gxgames/api/gen.ts"
},
"devDependencies": {
"@clack/prompts": "^1.1.0",
"@eslint/compat": "^2.0.5",
"@eslint/js": "^10.0.1",
"@stricli/core": "^1.2.6",
"@tony.ganchev/eslint-plugin-header": "3.4.3",
"@types/node": "24.x",
"@types/semver": "^7.7.1",
"chalk": "^5.6.2",
"eslint": "^10.2.0",
"eslint-plugin-only-warn": "^1.2.1",
"fflate": "^0.8.2",
"marked": "^12.0.2",
"marked-terminal": "^7.2.0",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.2",
"semver": "7.7.4",
"supports-hyperlinks": "^4.4.0",
"swagger-typescript-api": "^13.6.10",
"tiny-open": "^1.2.0",
"tsup": "^6.7.0",
"typescript": "5.6.x",
"typescript-eslint": "^8.58.1",
"zod": "^4.3.6"
},
"inlinedDependencies": {
"semver": "7.7.4",
"chalk": "^5.6.2",
"@clack/core": "1.1.0",
"@clack/prompts": "1.1.0",
"@stricli/core": "^1.2.6",
"fflate": "^0.8.2",
"marked": "^12.0.2",
"marked-terminal": "^7.2.0",
"open": "^10.2.0",
"sisteransi": "1.0.5",
"supports-hyperlinks": "^4.4.0",
"tiny-open": "^1.2.0",
"zod": "^4.3.6"
}
}