-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@customerio/cli",
"version": "0.0.0",
"description": "Agent-first CLI for Customer.io APIs",
"bin": {
"cio": ".npm/run.js"
},
"files": [
".npm/run.js",
"LICENSE",
"README.md"
],
"optionalDependencies": {
"@customerio/cli-darwin-arm64": "0.0.0",
"@customerio/cli-darwin-x64": "0.0.0",
"@customerio/cli-linux-arm64": "0.0.0",
"@customerio/cli-linux-x64": "0.0.0",
"@customerio/cli-win32-arm64": "0.0.0",
"@customerio/cli-win32-x64": "0.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"customerioCli": {
"platforms": [
{
"goos": "darwin",
"goarch": "arm64",
"npm": "darwin-arm64",
"os": "darwin",
"cpu": "arm64",
"ext": ""
},
{
"goos": "darwin",
"goarch": "amd64",
"npm": "darwin-x64",
"os": "darwin",
"cpu": "x64",
"ext": ""
},
{
"goos": "linux",
"goarch": "arm64",
"npm": "linux-arm64",
"os": "linux",
"cpu": "arm64",
"ext": ""
},
{
"goos": "linux",
"goarch": "amd64",
"npm": "linux-x64",
"os": "linux",
"cpu": "x64",
"ext": ""
},
{
"goos": "windows",
"goarch": "arm64",
"npm": "win32-arm64",
"os": "win32",
"cpu": "arm64",
"ext": ".exe"
},
{
"goos": "windows",
"goarch": "amd64",
"npm": "win32-x64",
"os": "win32",
"cpu": "x64",
"ext": ".exe"
}
]
},
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/customerio/cli.git"
},
"engines": {
"node": ">=16"
}
}