-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
48 lines (48 loc) · 1.25 KB
/
package.json
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
{
"name": "app-builder-bin",
"description": "app-builder precompiled binaries",
"version": "5.0.0-alpha.11",
"files": [
"index.js",
"mac",
"linux",
"win",
"index.d.ts"
],
"license": "MIT",
"repository": "develar/app-builder",
"keywords": [
"snap",
"appimage",
"icns"
],
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"conventional-changelog-cli": "^4.1.0"
},
"scripts": {
"changeset": "changeset",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"ci:version": "pnpm changelog && changeset version && make assets && git add .",
"ci:publish": "make build-all && pnpm publish --no-git-checks --tag next && changeset tag"
},
"publishConfig": {
"tag": "next",
"git-checks": false,
"executableFiles": [
"linux/arm/app-builder",
"linux/arm64/app-builder",
"linux/ia32/app-builder",
"linux/loong64/app-builder",
"linux/riscv64/app-builder",
"linux/x64/app-builder",
"mac/app-builder",
"mac/app-builder_amd64",
"mac/app-builder_arm64",
"win/arm64/app-builder.exe",
"win/ia32/app-builder.exe",
"win/x64/app-builder.exe"
]
}
}