-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
131 lines (131 loc) · 3.84 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "containerbase",
"version": "0.0.0-semantic-release",
"private": true,
"repository": "https://github.com/containerbase/base.git",
"license": "MIT",
"author": "Rhys Arkins <[email protected]>",
"contributors": [
"Michael Kriese <[email protected]>"
],
"type": "module",
"scripts": {
"bats": "node tools/bats.js --timing --verbose-run",
"build": "run-s 'build:*'",
"build:cli": "node tools/esbuild.js",
"eslint": "eslint --cache .",
"eslint-fix": "eslint --cache --fix .",
"lint": "run-s prettier eslint lint:types",
"lint:types": "run-p 'lint:types:*'",
"lint:types:default": "tsc",
"lint:types:dist": "tsc -p tsconfig.dist.json",
"lint-fix": "run-s prettier-fix eslint-fix",
"prepare": "husky",
"prepare:proxy": "node tools/prepare-proxy.js",
"prettier": "prettier --cache -c -u \"**/*.*\"",
"prettier-fix": "prettier --cache -w -u \"**/*.*\"",
"release:prepare": "node tools/prepare-release.js",
"release:publish": "node tools/publish-release.js",
"start": "tsx src/cli/index.ts",
"test": "run-s 'test:*'",
"test:bats": "node tools/bats.js --timing --verbose-run test/bash/ test/bash/v2",
"test:docker": "node tools/test.js",
"test:vitest": "vitest run --coverage"
},
"resolutions": {
"bats-support": "0.3.0",
"esbuild": "0.24.0",
"tsconfig-paths": "4.2.0",
"vite": "5.4.11"
},
"dependencies": {
"@renovatebot/pep440": "3.1.0",
"@sindresorhus/is": "7.0.1",
"clipanion": "3.2.1",
"common-tags": "1.8.2",
"deepmerge": "4.3.1",
"del": "8.0.0",
"execa": "9.5.1",
"global-agent": "3.0.0",
"got": "14.4.5",
"ini": "5.0.0",
"inversify": "6.1.4",
"pino": "9.5.0",
"pino-pretty": "11.3.0",
"pretty-ms": "9.2.0",
"reflect-metadata": "0.2.2",
"semver": "7.6.3",
"simple-git": "3.27.0",
"zod": "3.23.8"
},
"devDependencies": {
"@containerbase/eslint-plugin": "1.1.1",
"@eslint/js": "9.15.0",
"@semantic-release/exec": "6.0.3",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/common-tags": "1.8.4",
"@types/eslint-config-prettier": "6.11.3",
"@types/global-agent": "2.1.3",
"@types/ini": "4.1.1",
"@types/node": "20.17.7",
"@types/semver": "7.5.8",
"@types/shelljs": "0.8.15",
"@vitest/coverage-v8": "2.1.5",
"@vitest/eslint-plugin": "1.1.10",
"@vitest/ui": "2.1.5",
"@yao-pkg/pkg": "6.1.1",
"bats": "1.11.0",
"bats-assert": "2.0.0",
"bats-support": "0.3.0",
"clipanion": "3.2.1",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild": "0.24.0",
"esbuild-plugin-pino": "2.2.1",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-gha": "1.5.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-promise": "7.1.0",
"globals": "15.12.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"nock": "13.5.6",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.6",
"semantic-release": "24.2.0",
"shelljs": "0.8.5",
"tsx": "4.19.2",
"type-fest": "4.28.0",
"typescript": "5.7.2",
"typescript-eslint": "8.15.0",
"vite": "5.4.11",
"vite-tsconfig-paths": "5.1.3",
"vitest": "2.1.5",
"vitest-github-actions-reporter": "0.11.1"
},
"packageManager": "[email protected]",
"engines": {
"node": "^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
},
"pnpm": {
"allowNonAppliedPatches": true,
"supportedArchitectures": {
"cpu": [
"x64"
],
"os": [
"linux",
"win32"
]
},
"patchedDependencies": {
"@yao-pkg/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}