forked from PrivateAIM/master-images
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.13 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.13 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
{
"name": "master-images",
"version": "3.6.0",
"description": "Build, tag, list & push docker images and push to docker registry.",
"files": [
"dist",
"data"
],
"author": {
"name": "Peter Placzek",
"url": "https://github.com/tada5hi"
},
"scripts": {
"build:types": "tsc --emitDeclarationOnly -p tsconfig.json",
"build:js": "rollup -c",
"build": "rimraf dist && rimraf bin && npm run build:types && npm run build:js",
"cli": "node dist/cli.js",
"cli-dev": "ts-node src/cli.ts",
"lint": "eslint --ext .ts,.vue,.js ./src/",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"analysis",
"master-image",
"docker",
"image-scan"
],
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./bin/*": "./bin/*"
},
"bin": "dist/cli.js",
"license": "Apache-2.0",
"dependencies": {
"@routup/body": "^2.4.2",
"cac": "^6.7.14",
"consola": "^3.4.2",
"continu": "^1.3.2",
"cross-spawn": "^7.0.6",
"docken": "^1.1.1",
"dockerode": "^4.0.8",
"dotenv": "^16.5.0",
"get-port-please": "^3.2.0",
"locter": "^2.2.0",
"routup": "^4.0.2",
"semver": "^7.7.2",
"smob": "^1.5.0",
"tar-fs": "^3.1.0",
"ts-node": "^10.9.2",
"zod": "^3.24.3"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-swc": "^0.4.0",
"@tada5hi/eslint-config-typescript": "^1.2.17",
"@tada5hi/tsconfig": "^0.6.0",
"@types/cross-spawn": "^6.0.6",
"@types/dockerode": "^3.3.43",
"@types/node": "^22.14.1",
"@types/semver": "^7.7.1",
"@types/tar-fs": "^2.0.4",
"eslint": "^8.48.0",
"rollup": "^4.50.1",
"typescript": "^5.9.2"
}
}