-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
42 lines (42 loc) · 1.19 KB
/
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
39
40
41
42
{
"name": "godot-export",
"version": "1.0.0",
"description": "Exports Godot games.",
"main": "lib/main.js",
"scripts": {
"build": "yarn lint && ncc build ./src/main.ts -o dist && shx rm -rf dist/godot-export",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/firebelley/godot-export.git"
},
"author": "Firebelley",
"license": "MIT",
"bugs": {
"url": "https://github.com/firebelley/godot-export/issues"
},
"homepage": "https://github.com/firebelley/godot-export#readme",
"dependencies": {
"@actions/cache": "^3.2.4",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"ini": "^4.1.0",
"sanitize-filename": "^1.6.3"
},
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/node": "^18.16.2",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^8.33.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.3",
"shx": "^0.3.4",
"typescript": "^4.9.5"
}
}