yunyi-activator 1.4.2 → 1.4.4
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/dist/index.js +112 -65
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yunyi-activator",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "Yunyi API Activator for Claude Code & Codex",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"yunyi": "dist/index.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"build": "esbuild src/index.ts --bundle --platform=node --target=
|
|
11
|
-
"build:slim": "esbuild src/index.ts --bundle --platform=node --target=
|
|
10
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node14 --minify --outfile=dist/index.js",
|
|
11
|
+
"build:slim": "esbuild src/index.ts --bundle --platform=node --target=node14 --minify --outfile=dist/index.js --external:chalk --external:prompts --external:nanospinner",
|
|
12
12
|
"build:dev": "tsc",
|
|
13
13
|
"start": "node dist/index.js",
|
|
14
14
|
"prepublishOnly": "npm run build"
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"author": "Yunyi",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"engines": {
|
|
26
|
-
"node": ">=
|
|
26
|
+
"node": ">=14.0.0"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist"
|
|
30
30
|
],
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"chalk": "^4.1.2",
|
|
33
|
-
"
|
|
34
|
-
"
|
|
33
|
+
"nanospinner": "^1.2.2",
|
|
34
|
+
"prompts": "^2.4.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/inquirer": "^9.0.7",
|
|
38
37
|
"@types/node": "^20.10.0",
|
|
38
|
+
"@types/prompts": "^2.4.9",
|
|
39
39
|
"esbuild": "^0.27.2",
|
|
40
40
|
"typescript": "^5.3.3"
|
|
41
41
|
}
|