-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.64 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.64 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
{
"name": "@rage-against-the-pixel/unity-cli",
"version": "1.8.1",
"description": "A command line utility for the Unity Game Engine.",
"author": "RageAgainstThePixel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RageAgainstThePixel/unity-cli.git"
},
"bugs": {
"url": "https://github.com/RageAgainstThePixel/unity-cli/issues"
},
"homepage": "https://github.com/RageAgainstThePixel/unity-cli#readme",
"keywords": [
"unity-cli",
"unity",
"cli",
"command-line",
"command line",
"tool",
"utility",
"game development",
"devOps",
"automation",
"build",
"continuous integration",
"ci",
"cd",
"development",
"gameDev",
"game dev",
"rage-against-the-pixel",
"rage against the pixel"
],
"main": "dist/index.js",
"bin": {
"unity-cli": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"tests": "jest --roots tests",
"link": "npm link",
"unlink": "npm unlink @rage-against-the-pixel/unity-cli"
},
"dependencies": {
"@electron/asar": "^4.0.1",
"@rage-against-the-pixel/unity-releases-api": "^1.0.4",
"commander": "^14.0.2",
"glob": "^11.1.0",
"semver": "^7.7.3",
"source-map-support": "^0.5.21",
"tar": "^7.5.2",
"update-notifier": "^7.3.1",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.10.4",
"@types/semver": "^7.7.1",
"@types/update-notifier": "^6.0.8",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}