-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.53 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.53 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
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
{
"name": "containerbase",
"version": "0.0.0-semantic-release",
"private": true,
"repository": "https://github.com/containerbase/base.git",
"license": "MIT",
"author": "Rhys Arkins <rhys@arkins.net>",
"contributors": [
"Michael Kriese <michael.kriese@visualon.de>"
],
"type": "module",
"scripts": {
"bats": "node tools/bats.js --timing --verbose-run",
"build": "run-s 'build:*'",
"build:cli": "node tools/build.js",
"eslint": "eslint --cache .",
"eslint-fix": "eslint --cache --fix .",
"lint": "run-s prettier eslint lint:types lint:markdown",
"lint:markdown": "markdownlint-cli2 '**/*.md'",
"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 'lint-fix:*'",
"lint-fix:markdown": "markdownlint-cli2 --fix '**/*.md'",
"prepare": "husky",
"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": {
"@renovatebot/pep440": "4.2.2",
"@seald-io/nedb": "4.1.2",
"@sindresorhus/is": "8.0.0",
"clipanion": "3.2.1",
"common-tags": "1.8.2",
"deepmerge": "4.3.1",
"del": "8.0.1",
"execa": "9.6.1",
"global-agent": "3.0.0",
"got": "15.0.3",
"ini": "6.0.0",
"inversify": "8.1.0",
"node-ipc": "12.0.0",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"pretty-ms": "9.3.0",
"reflect-metadata": "0.2.2",
"semver": "7.7.4",
"zod": "4.4.2"
},
"devDependencies": {
"@containerbase/eslint-plugin": "2.1.0",
"@containerbase/istanbul-reports-html": "2.0.1",
"@eslint/js": "9.39.4",
"@semantic-release/exec": "7.1.0",
"@tsconfig/node24": "24.0.4",
"@tsconfig/strictest": "2.0.8",
"@types/common-tags": "1.8.4",
"@types/eslint-config-prettier": "6.11.3",
"@types/global-agent": "3.0.0",
"@types/ini": "4.1.1",
"@types/node": "24.12.2",
"@types/node-ipc": "9.2.3",
"@types/semver": "7.7.1",
"@types/shelljs": "0.10.0",
"@vitest/coverage-v8": "4.1.5",
"@vitest/eslint-plugin": "1.6.16",
"@vitest/ui": "4.1.5",
"@yao-pkg/pkg": "6.19.0",
"bats": "1.13.0",
"bats-assert": "2.2.4",
"bats-support": "0.3.0",
"clipanion": "3.2.1",
"conventional-changelog-conventionalcommits": "9.3.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-formatter-gha": "2.0.1",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-promise": "7.3.0",
"globals": "17.6.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"markdownlint-cli2": "0.22.1",
"nock": "14.0.14",
"npm-run-all2": "8.0.4",
"prettier": "3.8.3",
"prettier-plugin-packagejson": "3.0.2",
"rolldown": "1.0.0-rc.18",
"semantic-release": "25.0.3",
"shelljs": "0.10.0",
"tsx": "4.21.0",
"type-fest": "5.6.0",
"typescript": "6.0.3",
"typescript-eslint": "8.59.1",
"vite": "8.0.10",
"vitest": "4.1.5"
},
"peerDependencies": {
"markdownlint": "*",
"thread-stream": "*"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=24.10.0",
"pnpm": "^10.0.0"
}
}