-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.04 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.04 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
115
116
117
{
"name": "@noxify/gitlab-ci-builder",
"version": "1.6.2",
"description": "Build GitLab CI/CD pipelines programmatically with TypeScript. Fluent API for creating jobs, templates, and workflows. Import/export YAML, visualize with Mermaid diagrams, and resolve extends chains automatically.",
"keywords": [
"automation",
"builder",
"ci-cd",
"code-generation",
"configuration",
"configuration-management",
"continuous-deployment",
"continuous-integration",
"devops",
"extends-resolution",
"fluent-api",
"gitlab",
"gitlab-ci",
"gitops",
"infrastructure-as-code",
"mermaid",
"pipeline",
"typescript",
"visualization",
"yaml"
],
"license": "MIT",
"author": {
"name": "Marcus Reinhardt",
"url": "https://github.com/noxify"
},
"contributors": [
{
"name": "Marcus Reinhardt",
"url": "https://github.com/noxify"
}
],
"repository": {
"type": "git",
"url": "https://github.com/noxify/gitlab-ci-builder"
},
"bin": {
"gitlab-ci-builder": "./dist/cli/index.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"default": "./src/index.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"ci:publish": "pnpm build && pnpm publish -r --access public --publish-branch main && pnpm changeset tag",
"ci:version": "pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"cli:dev": "tsx src/cli/index.ts",
"cs": "changeset",
"dev": "tsdown --watch",
"lint": "ultracite check",
"lint:fix": "ultracite fix && pnpm format:fix",
"format": "oxfmt --check",
"format:fix": "oxfmt .",
"generate:types": "tsx src/generate-types.ts",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"test:e2e": "vitest --run --project e2e",
"test:integration": "vitest --run --project integration",
"test:ui": "vitest --ui",
"test:unit": "vitest --run --project unit",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@commander-js/extra-typings": "14.0.0",
"climt": "0.2.0",
"commander": "14.0.3",
"deepmerge": "4.3.1",
"js-yaml": "4.1.1",
"oo-ascii-tree": "1.131.0",
"read-pkg": "10.1.0",
"tinyglobby": "0.2.16",
"typescript": "6.0.3",
"zod": "4.4.3"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@types/js-yaml": "4.0.9",
"@types/node": "24.12.4",
"@vitest/coverage-v8": "4.1.6",
"dedent": "1.7.2",
"json-schema-to-typescript": "15.0.4",
"jsonc-eslint-parser": "3.1.0",
"memfs": "4.57.2",
"msw": "2.14.6",
"node-pty": "1.1.0",
"oxfmt": "0.51.0",
"oxlint": "1.66.0",
"tsdown": "0.22.0",
"tsx": "4.22.3",
"tuistory": "0.7.0",
"ultracite": "7.7.0",
"vitest": "4.1.6"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.1.3"
}