-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.25 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.25 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
{
"name": "launch-unity",
"version": "0.17.1",
"description": "Open a Unity project with the matching Editor version (macOS/Windows)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"launch-unity": "dist/launch.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/launch.js",
"test": "npm run build && node --test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hatayama/LaunchUnityCommand.git"
},
"keywords": [
"unity",
"unity-hub",
"cli",
"macos",
"windows"
],
"author": "",
"license": "MIT",
"files": [
"dist",
"README.md",
"README.ja.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "25.6.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"prettier": "3.8.3",
"typescript": "6.0.3",
"typescript-eslint": "8.59.0"
},
"overrides": {
"js-yaml": "4.1.1",
"minimatch": ">=10.2.1"
}
}