-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.7 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
59
60
61
62
63
64
65
66
67
68
{
"name": "@kapeta/kap",
"version": "0.0.53",
"description": "Kapeta Command Line Utility",
"main": "kap.js",
"license": "MIT",
"author": {
"email": "[email protected]",
"name": "Kapeta",
"url": "https://kapeta.com"
},
"private": false,
"publishConfig": {
"access": "public"
},
"bin": {
"kap": "bin/kap"
},
"scripts": {
"postinstall": "node ./bin/kap init",
"build-binary": "pkg package.json"
},
"pkg": {
"scripts": [
"kap.js"
],
"assets": [
"default-commands.json",
"ci-commands.json"
],
"targets": [
"node18-alpine-x64",
"node18-alpine-arm64",
"node18-linux-x64",
"node18-linux-arm64",
"node18-linuxstatic-x64",
"node18-linuxstatic-arm64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64",
"node18-win-arm64"
],
"outputPath": "dist"
},
"dependencies": {
"@kapeta/local-cluster-config": "<2",
"@kapeta/nodejs-api-client": "^1.0.1",
"@kapeta/npm-package-handler": "<2",
"commander": "^12.0.0",
"inquirer": "^7.2.0",
"mkdirp": "3.0.1",
"open": "^8.4.0"
},
"bundledDependencies": [
"@kapeta/local-cluster-config",
"@kapeta/nodejs-api-client",
"@kapeta/npm-package-handler",
"commander",
"inquirer",
"mkdirp",
"open"
],
"devDependencies": {
"@kapeta/prettier-config": "^0.6.0",
"pkg": "^5.8.1"
},
"prettier": "@kapeta/prettier-config"
}