-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1021 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1021 Bytes
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
{
"name": "unitypackage-extractor",
"version": "1.1.0",
"description": "Extract .unitypackage files from the command line",
"main": "dist/index.js",
"bin": {
"unitypackage-extractor": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"keywords": [
"unity",
"unitypackage",
"extract",
"cli"
],
"author": "Maoyeedy",
"license": "MIT",
"dependencies": {
"sanitize-filename": "^1.6.3",
"tar": "^7.4.3",
"tmp-promise": "^3.0.3"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/tar": "^6.1.13",
"@types/tmp": "^0.2.6",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Maoyeedy/unitypackage-extractor.git"
},
"bugs": {
"url": "https://github.com/Maoyeedy/unitypackage-extractor/issues"
},
"homepage": "https://github.com/Maoyeedy/unitypackage-extractor#readme"
}