-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
58 lines (58 loc) · 1.4 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@emacs-eask/cli",
"version": "0.10.2",
"description": "A set of command-line tools to build Emacs packages",
"main": "eask",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"pkg-all": "pkg package.json",
"pkg-linux-arm64": "pkg package.json -t node18-linux-arm64 --output dist/eask",
"pkg-linux-x64": "pkg package.json -t node18-linux-x64 --output dist/eask",
"pkg-macos-arm64": "pkg package.json -t node18-macos-arm64 --output dist/eask",
"pkg-macos-x64": "pkg package.json -t node18-macos-x64 --output dist/eask",
"pkg-win-arm64": "pkg package.json -t node18-win-arm64 --output dist/eask",
"pkg-win-x64": "pkg package.json -t node18-win-x64 --output dist/eask"
},
"bin": {
"eask": "./eask"
},
"repository": {
"type": "git",
"url": "https://github.com/emacs-eask/cli.git"
},
"keywords": [
"emacs",
"package",
"management",
"cli"
],
"author": "Jen-Chieh Shen",
"license": "GPL-3.0",
"dependencies": {
"which": "^4.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"pkg": "^5.0.0"
},
"files": [
"cmds",
"src",
"lisp"
],
"publishConfig": {
"access": "public"
},
"pkg": {
"scripts": [
"cmds/**/*.js",
"src/**/*.js"
],
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
],
"outputPath": "dist"
}
}