-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
182 lines (182 loc) · 6.09 KB
/
package.json
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": "@autifyhq/autify-cli",
"version": "0.50.0-beta.0",
"description": "Autify Command Line Interface (CLI)",
"author": "Autify",
"bin": {
"autify": "./bin/run"
},
"homepage": "https://github.com/autifyhq/autify-cli",
"license": "MIT",
"main": "dist/index.js",
"repository": "autifyhq/autify-cli",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@autifyhq/autify-sdk": "^0.23.0",
"@oclif/core": "^3.27.0",
"@oclif/errors": "^1.3.6",
"@oclif/plugin-help": "^6.2.16",
"@oclif/plugin-not-found": "^3.2.22",
"@oclif/plugin-update": "^4.6.6",
"@oclif/plugin-warn-if-update-available": "^2.1.1",
"abort-controller": "^3.0.0",
"archiver": "^6.0.2",
"envfile": "^7.1.0",
"get-port": "^5.1.1",
"inquirer": "^8.2.6",
"listr": "^0.14.3",
"node-emoji": "^1.11.0",
"node-stream-zip": "^1.15.0",
"per-env": "^1.0.2",
"shell-quote": "^1.8.1",
"tar": "^6.2.1",
"unzip-stream": "^0.3.4",
"uuid": "^9.0.1",
"which": "^4.0.0",
"winston": "^3.15.0",
"xstate": "^4.38.3"
},
"devDependencies": {
"@autifyhq/autify-cli-integration-test": "*",
"@types/archiver": "^6.0.3",
"@types/chai": "^4.3.20",
"@types/inquirer": "^8.2.10",
"@types/listr": "^0.14.9",
"@types/node": "^20.16.15",
"@types/node-emoji": "^1.8.2",
"@types/shell-quote": "^1.7.5",
"@types/tar": "^6.1.13",
"@types/unzip-stream": "^0.3.4",
"@types/uuid": "^9.0.8",
"chai": "^5.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"oclif": "^4.15.12",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-morph": "^21.0.1",
"ts-node": "^10.9.2",
"tslib": "^2.8.0",
"typed-emitter": "^2.1.0",
"typescript": "^5.6.3"
},
"oclif": {
"bin": "autify",
"dirname": "autify",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-update",
"@oclif/plugin-warn-if-update-available"
],
"topicSeparator": " ",
"topics": {
"web": {
"description": "Autify for Web"
},
"web:api": {
"description": "Low-level APIs on Autify for Web"
},
"web:auth": {
"description": "Authentication on Autify for Web"
},
"web:test": {
"description": "Test on Autify for Web"
},
"mobile": {
"description": "Autify for Mobile"
},
"mobile:api": {
"description": "Low-level APIs on Autify for Mobile"
},
"mobile:auth": {
"description": "Authentication on Autify for Mobile"
},
"mobile:build": {
"description": "Build on Autify for Mobile"
},
"mobile:test": {
"description": "Test on Autify for Mobile"
},
"connect": {
"description": "Autify Connect"
},
"connect:access-point": {
"description": "Autify Connect Access Point"
},
"connect:client": {
"description": "Autify Connect Client"
}
},
"update": {
"s3": {
"host": "https://autify-cli-assets.s3.us-west-2.amazonaws.com",
"bucket": "autify-cli-assets",
"folder": "autify-cli"
}
},
"macos": {
"identifier": "com.autify.cli"
}
},
"scripts": {
"generate:api-commands": "ts-node scripts/generate-api-commands.ts",
"generate": "npm run generate:api-commands web && npm run generate:api-commands mobile && npm run format-lint-api-commands && npm run build",
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"format": "prettier . --write",
"format-api-commands": "prettier --write src/commands/web/api src/commands/mobile/api",
"lint-api-commands": "eslint --fix src/commands/web/api src/commands/mobile/api",
"format-lint-api-commands": "npm run format-api-commands && npm run lint-api-commands",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "npm run lint",
"prepack": "npm run build && oclif manifest && oclif readme",
"release": "ts-node ./scripts/release.ts",
"test:integration": "npm run build -w integration-test && autify-cli-integration-test",
"test:integration:dev": "npm run build -w integration-test && cross-env AUTIFY_CLI_PATH=../bin/dev autify-cli-integration-test",
"test:integration:record": "npm run build -w integration-test && cross-env AUTIFY_CLI_INTEGRATION_TEST_RECORD=1 AUTIFY_CONNECT_CLIENT_MODE=real autify-cli-integration-test",
"test:integration:dev:record": "npm run build -w integration-test && cross-env AUTIFY_CLI_PATH=../bin/dev AUTIFY_CLI_INTEGRATION_TEST_RECORD=1 AUTIFY_CONNECT_CLIENT_MODE=real autify-cli-integration-test",
"test:integration:connect": "AUTIFY_CONNECT_CLIENT_MODE=fake autify connect client install && npm run test:integration AutifyConnectClient",
"test:integration:connect:dev": "AUTIFY_CONNECT_CLIENT_MODE=fake ./bin/dev connect client install && npm run test:integration:dev AutifyConnectClient",
"test:integration:connect:record": "autify connect client install && npm run test:integration:record AutifyConnectClient",
"test:integration:connect:dev:record": "./bin/dev connect client install && npm run test:integration:dev:record AutifyConnectClient",
"version": "oclif readme && git add README.md",
"prepare": "per-env || true",
"prepare:development": "husky install",
"prepare:production": "true"
},
"overrides": {
"eslint-plugin-unicorn": "^50.0.1",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/eslint-plugin": "^6.21.0"
},
"lint-staged": {
"**/*.{md,json,yml,js,cjs}": "prettier --write",
"**/*.ts": [
"eslint",
"prettier --write"
]
},
"engines": {
"node": ">=22.5.1"
},
"bugs": "https://github.com/autifyhq/autify-cli/issues",
"keywords": [
"oclif"
],
"workspaces": [
"integration-test"
],
"types": "dist/index.d.ts"
}