forked from sindresorhus/create-dmg
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.24 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.24 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
{
"name": "create-dmg",
"version": "8.1.0",
"description": "Create a good-looking DMG for your macOS app in seconds",
"license": "MIT",
"repository": "sindresorhus/create-dmg",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": {
"create-dmg": "./cli.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"test": "ava",
"build": "cd ComposeIcon && xcrun swift build -c release --arch arm64 --arch x86_64 --product compose-icon && cp .build/apple/Products/Release/compose-icon ../compose-icon",
"prepublishOnly": "npm run build"
},
"files": [
"cli.js",
"compose-icon.js",
"sla.js",
"assets",
"disk-icon.icns",
"compose-icon"
],
"keywords": [
"cli-app",
"cli",
"create",
"dmg",
"disk",
"image",
"macos",
"mac",
"app",
"application",
"apple"
],
"dependencies": {
"appdmg": "^0.6.6",
"execa": "^9.6.1",
"icns-lib": "^1.0.1",
"meow": "^14.0.0",
"ora": "^9.1.0",
"plist": "^3.1.0",
"tempy": "^3.1.1"
},
"devDependencies": {
"ava": "^6.4.1",
"jest-image-snapshot": "^6.5.1",
"xo": "^1.2.3"
},
"ava": {
"serial": true,
"timeout": "30s"
}
}