-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.26 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
{
"name": "gitlab-dynamic-pipelines",
"version": "1.1.2",
"description": "Create dynamic Gitlab CI/CD pipelines using TypeScript with types",
"keywords": [
"gitlab"
],
"homepage": "https://github.com/onlywei/gitlab-dynamic-pipelines#readme",
"bugs": {
"url": "https://github.com/onlywei/gitlab-dynamic-pipelines/issues"
},
"license": "MIT",
"author": "Wei Wang <wei@fastmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/onlywei/gitlab-dynamic-pipelines.git"
},
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"prepublishOnly": "pnpm build",
"test": "tsc -p tsconfig.test.json && node --test"
},
"dependencies": {
"yaml": "^2.8.2"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^24.10.4",
"oxfmt": "^0.23.0",
"oxlint": "^1.38.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.26.2+sha512.0e308ff2005fc7410366f154f625f6631ab2b16b1d2e70238444dd6ae9d630a8482d92a451144debc492416896ed16f7b114a86ec68b8404b2443869e68ffda6"
}