-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
43
44
45
46
{
"name": "unreal-remote-execution",
"version": "1.0.0",
"description": "Package to connect to a Unreal Engine instance and execute python commands",
"keywords": [
"unreal",
"engine",
"ue",
"ue5",
"game",
"python"
],
"author": {
"name": "Nils Soderman"
},
"license": "MIT-0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nils-soderman/unreal-remote-execution"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --minify --clean",
"watch": "tsup src/index.ts --format cjs,esm --dts --watch --clean --sourcemap",
"test": "jest",
"lint": "eslint src --ext ts"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^8.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.3",
"tsup": "^7.1.0",
"typescript": "^5.1.6"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}