-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
182 lines (182 loc) · 5.33 KB
/
Copy pathpackage.json
File metadata and controls
182 lines (182 loc) · 5.33 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
"name": "@prismatic-io/prism",
"version": "10.2.0",
"description": "Build, deploy, and support integrations in Prismatic from the comfort of your command line",
"keywords": [
"prismatic",
"cli"
],
"homepage": "https://prismatic.io",
"bugs": {
"url": "https://github.com/prismatic-io/prism"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prismatic-io/prism.git"
},
"license": "MIT",
"bin": {
"prism": "lib/run.js"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "rm -rf lib && bun run clean-test-temp",
"clean-test-temp": "rm -rf src/commands/components/temp src/commands/components/init/temp",
"build": "bun run clean && bun run format && bun run lint && tsc && bun run bundle",
"bundle": "bun run build.ts && oclif manifest",
"bundle:debug": "bun run build.ts --debug",
"prepack": "bun run build",
"lint": "biome lint .",
"lint-fix": "biome lint --write --unsafe .",
"format": "bun run lint-fix && biome format --write .",
"check-format": "biome format .",
"test": "bun run clean-test-temp && vitest run",
"test:snapshots": "bun run clean-test-temp && vitest run --update",
"codegen:clean": "find src -name '*.generated.ts' -delete",
"codegen": "bun run codegen:clean && export GRAPHQL_AUTH_KEY=$(prism me:token) && export PRISMATIC_URL=$(echo $PRISMATIC_URL) && graphql-codegen --config codegen.ts && bun run format"
},
"files": [
"oclif.manifest.json",
"bin",
"lib"
],
"dependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@msgpack/msgpack": "^3.1.3",
"@oclif/core": "^4.11.11",
"@oclif/plugin-autocomplete": "^3.2.49",
"@oclif/plugin-help": "^6.2.48",
"@oclif/plugin-warn-if-update-available": "^3.1.64",
"chardet": "^2.1.1",
"dayjs": "^1.11.20",
"dotenv": "^17.4.2",
"ejs": "^6.0.1",
"fs-extra": "^11.3.5",
"graphql": "^16.14.0",
"http-status-codes": "^2.3.0",
"inquirer": "^13.4.3",
"inquirer-autocomplete-standalone": "^0.8.1",
"js-yaml": "^5.1.0",
"jwt-decode": "^4.0.0",
"lodash-es": "^4.18.1",
"mime-types": "^3.0.2",
"natural-orderby": "^5.0.0",
"number-to-words": "^1.2.4",
"open": "^11.0.0",
"prettier": "^3.8.3",
"striptags": "^3.2.0",
"tempy": "^3.2.0",
"terminal-link": "^5.0.0",
"tinyexec": "^1.1.2",
"tinyglobby": "^0.2.16",
"ts-morph": "^28.0.0",
"undici": "^7.25.0",
"uuid": "^14.0.0",
"wsdl-tsclient": "^1.7.1",
"yazl": "^3.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@graphql-codegen/cli": "^6.3.1",
"@graphql-codegen/near-operation-file-preset": "^5.1.0",
"@graphql-codegen/typescript": "^5.0.10",
"@graphql-codegen/typescript-operations": "^5.1.0",
"@oclif/test": "^4.1.20",
"@prismatic-io/spectral": "^10.22.0",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/mime-types": "^3.0.1",
"@types/node": "^26.0.0",
"@types/number-to-words": "^1.2.3",
"@types/yauzl": "^3.4.0",
"@types/yazl": "^3.3.1",
"bun-types": "^1.3.14",
"chalk": "^5.6.2",
"msw": "^2.14.6",
"oclif": "^4.23.24",
"openapi-types": "^12.1.3",
"typescript": "^7.0.2",
"vitest": "^4.1.9",
"yauzl": "^3.3.0"
},
"oclif": {
"commands": {
"strategy": "explicit",
"target": "./lib/index.js",
"identifier": "Commands"
},
"bin": "prism",
"dirname": "prism",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7
},
"topicSeparator": ":",
"topics": {
"alerts": {
"description": "Manage Alerting resources"
},
"alerts:groups": {
"description": "Manage Alert Groups"
},
"alerts:monitors": {
"description": "Manage Alert Monitors"
},
"alerts:webhooks": {
"description": "Manage Alert Webhooks"
},
"components": {
"description": "Manage, create, and publish Components"
},
"components:init": {
"description": "Create Components"
},
"components:dev": {
"description": "Component development utilities"
},
"customers": {
"description": "Manage Customers"
},
"customers:users": {
"description": "Manage Customer Users"
},
"executions": {
"description": "Fetch results of Instance executions or Integration test runs"
},
"help": {
"description": "Display this help or command specific help"
},
"instances": {
"description": "Manage Instances"
},
"integrations": {
"description": "Manage and import Integrations"
},
"organization": {
"description": "Manage your Organization"
},
"profiles": {
"description": "Manage authentication profiles"
},
"organization:users": {
"description": "Manage Organization Users"
},
"translations:list": {
"description": "Generates phrases for all marketplace integrations"
},
"workflows": {
"description": "Manage embedded workflow builder workflows and templates"
}
}
}
}