forked from containerbase/base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.83 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
{
"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 --report-unused-disable-directives .",
"eslint-fix": "eslint --cache --fix --report-unused-disable-directives .",
"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",
"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"
},
"dependencies": {
"@sindresorhus/is": "6.2.0",
"clipanion": "3.2.1",
"common-tags": "1.8.2",
"deepmerge": "4.3.1",
"del": "7.1.0",
"execa": "8.0.1",
"global-agent": "3.0.0",
"got": "14.2.1",
"inversify": "6.0.2",
"pino": "8.20.0",
"pino-pretty": "10.3.1",
"pretty-ms": "9.0.0",
"reflect-metadata": "0.2.2",
"semver": "7.6.0",
"simple-git": "3.24.0",
"tar": "6.2.1",
"typanion": "3.14.0"
},
"devDependencies": {
"@semantic-release/exec": "6.0.3",
"@tsconfig/node20": "20.1.4",
"@tsconfig/strictest": "2.0.5",
"@types/common-tags": "1.8.4",
"@types/global-agent": "2.1.3",
"@types/node": "20.12.7",
"@types/semver": "7.5.8",
"@types/shelljs": "0.8.15",
"@types/tar": "6.1.13",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"@vitest/coverage-v8": "1.5.0",
"@vitest/ui": "1.5.0",
"@yao-pkg/pkg": "5.11.5",
"bats": "1.11.0",
"bats-assert": "2.0.0",
"bats-support": "0.3.0",
"clipanion": "3.2.1",
"conventional-changelog-conventionalcommits": "7.0.2",
"esbuild": "0.20.1",
"esbuild-plugin-pino": "2.1.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-gha": "1.4.3",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-jest-formatting": "3.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript-enum": "2.1.0",
"eslint-plugin-vitest": "0.4.1",
"husky": "9.0.11",
"lint-staged": "15.2.2",
"nock": "13.5.4",
"npm-run-all2": "6.1.2",
"prettier": "3.2.5",
"prettier-plugin-packagejson": "2.4.12",
"semantic-release": "23.0.8",
"shelljs": "0.8.5",
"tsx": "4.7.2",
"type-fest": "4.15.0",
"typescript": "5.4.5",
"vite": "5.2.10",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.5.0",
"vitest-github-actions-reporter": "0.11.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0",
"pnpm": "^8.0.0"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@yao-pkg/[email protected]": "patches/@[email protected]"
},
"allowNonAppliedPatches": true,
"supportedArchitectures": {
"os": [
"linux",
"win32"
],
"cpu": [
"x64"
]
},
"overrides": {
"bats-support": "0.3.0",
"esbuild": "0.20.1",
"tsconfig-paths": "4.2.0",
"vite": "5.2.10"
}
}
}