@wport/cli 0.9.1-dev.0 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +11 -11
- package/dist/index.js +235 -1284
- package/dist/index.js.map +1 -1
- package/package.json +2 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wport/cli",
|
|
3
|
-
"version": "0.9.1
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "wport CLI — terminal interface to the W101 Talent Search Hub public API",
|
|
5
5
|
"author": "YAO <yao@wport.me>",
|
|
6
6
|
"repository": {
|
|
@@ -28,9 +28,6 @@
|
|
|
28
28
|
"LICENSE"
|
|
29
29
|
],
|
|
30
30
|
"scripts": {
|
|
31
|
-
"gen:openapi": "node scripts/gen-from-remote.cjs http://localhost:3000/api/api-doc-json src/generated/schema.d.ts",
|
|
32
|
-
"gen:openapi:prod": "node scripts/gen-from-remote.cjs https://api.wport.me/api/api-doc-json src/generated/schema.d.ts",
|
|
33
|
-
"gen:openapi:personal": "node scripts/gen-from-remote.cjs docs/handoff/swagger-wport-personal-api-v1.json src/generated/personal-schema.d.ts --keep-prefix /api/v1/personal/",
|
|
34
31
|
"build": "tsup",
|
|
35
32
|
"build:dev": "WPORT_BUILD_CHANNEL=dev tsup",
|
|
36
33
|
"dev": "tsup --watch",
|
|
@@ -59,21 +56,16 @@
|
|
|
59
56
|
],
|
|
60
57
|
"license": "MIT",
|
|
61
58
|
"dependencies": {
|
|
59
|
+
"@wport/core": "^0.1.0",
|
|
62
60
|
"cli-table3": "^0.6.5",
|
|
63
61
|
"commander": "^12.1.0",
|
|
64
62
|
"env-paths": "^3.0.0",
|
|
65
|
-
"openapi-fetch": "^0.12.0",
|
|
66
63
|
"picocolors": "^1.0.1"
|
|
67
64
|
},
|
|
68
65
|
"devDependencies": {
|
|
69
66
|
"@types/node": "^20.14.0",
|
|
70
|
-
"openapi-typescript": "^7.4.0",
|
|
71
67
|
"tsup": "^8.3.0",
|
|
72
68
|
"typescript": "^5.5.0",
|
|
73
69
|
"vitest": "^3.2.6"
|
|
74
|
-
},
|
|
75
|
-
"overrides": {
|
|
76
|
-
"js-yaml": "^4.3.0",
|
|
77
|
-
"esbuild": "^0.28.1"
|
|
78
70
|
}
|
|
79
71
|
}
|