@lintge/makedmg 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +8 -16
package/package.json CHANGED
@@ -1,23 +1,15 @@
1
1
  {
2
2
  "name": "@lintge/makedmg",
3
- "version": "1.0.0",
4
- "description": "一键生成带拖拽背景的 macOS DMG 安装包",
5
- "main": "makedmg.sh",
3
+ "version": "1.0.2",
4
+ "description": "macOS DMG 一键打包工具",
6
5
  "bin": {
7
6
  "makedmg": "./makedmg.sh"
8
7
  },
9
- "repository": {
10
- "type": "git",
11
- "url": "https://github.com/lg10/makedmg.git"
8
+ "scripts": {
9
+ "postinstall": "chmod +x ./makedmg.sh"
12
10
  },
13
- "keywords": [
14
- "dmg",
15
- "mac",
16
- "app",
17
- "pack",
18
- "installer"
19
- ],
20
- "author": "你的名字",
21
- "license": "MIT",
22
- "preferGlobal": true
11
+ "publishConfig": {
12
+ "registry": "https://registry.npmjs.org/",
13
+ "access": "public"
14
+ }
23
15
  }