-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.17 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
{
"name": "@intentius/chant-lexicon-gitlab",
"version": "0.73.0",
"description": "GitLab CI lexicon for chant — declarative IaC in TypeScript",
"license": "Apache-2.0",
"homepage": "https://intentius.io/chant",
"repository": {
"type": "git",
"url": "https://github.com/INTENTIUS/chant.git",
"directory": "lexicons/gitlab"
},
"bugs": {
"url": "https://github.com/INTENTIUS/chant/issues"
},
"keywords": [
"infrastructure-as-code",
"iac",
"typescript",
"gitlab",
"gitlab-ci",
"chant"
],
"type": "module",
"files": [
"src/",
"dist/"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"development": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./src/index.ts"
},
"./*": {
"development": "./src/*.ts",
"types": "./dist/*.d.ts",
"default": "./src/*.ts"
},
"./lint/post-synth": {
"development": "./src/lint/post-synth/index.ts",
"types": "./dist/lint/post-synth/index.d.ts",
"default": "./src/lint/post-synth/index.ts"
},
"./op/activities": {
"development": "./src/op/activities/index.ts",
"types": "./dist/op/activities/index.d.ts",
"default": "./src/op/activities/index.ts"
},
"./manifest": "./dist/manifest.json",
"./meta": "./dist/meta.json",
"./types": "./dist/types/index.d.ts"
},
"scripts": {
"generate": "tsx src/codegen/generate-cli.ts",
"bundle": "tsx src/package-cli.ts",
"validate": "tsx src/validate-cli.ts",
"docs": "tsx src/codegen/docs-cli.ts",
"prepack": "npm run generate && npm run bundle && npm run validate && npm run build",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && find dist -type f \\( -name \"*.js\" -o -name \"*.js.map\" \\) -delete"
},
"devDependencies": {
"@intentius/chant": "*",
"@intentius/chant-lexicon-github": "*",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@intentius/chant": "^0.73.0",
"@intentius/chant-lexicon-github": "^0.73.0",
"typescript": "^5.9.3"
},
"peerDependenciesMeta": {
"@intentius/chant-lexicon-github": {
"optional": true
}
}
}