-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 814 Bytes
/
package.json
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
{
"name": "gdexporter",
"version": "3.2.12",
"description": "A CLI exporter for GDevelop projects",
"engines": {
"node": ">= 14.0.0"
},
"types": "./types.d.ts",
"engineStrict": true,
"main": "./src/main.js",
"scripts": {
"start": "node ./bin/cli.js"
},
"bin": {
"gdexport": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arthuro555/gdexporter.git"
},
"keywords": [
"cli",
"ci",
"GDevelop",
"automation"
],
"author": "Arthur Pacaud (arthuro555)",
"license": "MIT",
"bugs": {
"url": "https://github.com/arthuro555/gdexporter/issues"
},
"homepage": "https://github.com/arthuro555/gdexporter#readme",
"dependencies": {
"gdcore-tools": "^1.0.9",
"jsdom": "^16.4.0",
"minimist": "^1.2.5"
}
}