myclaude-code 8.8.11 → 8.8.13
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/README.md +44 -10
- package/dist/cli.js +83 -83
- package/dist/login-redirect-command.js +2 -2
- package/dist/provider-command.js +30 -30
- package/dist/provider-setup.js +107 -103
- package/install.sh +4 -2
- package/package.json +10 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "myclaude-code",
|
|
3
|
-
"version": "8.8.
|
|
3
|
+
"version": "8.8.13",
|
|
4
4
|
"description": "myclaude: fast-start AI coding CLI with no Claude Code login and quick third-party API setup",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"myclaude",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
],
|
|
16
16
|
"type": "module",
|
|
17
17
|
"bin": {
|
|
18
|
+
"myclaude-code": "dist/cli.js",
|
|
18
19
|
"myclaude": "dist/cli.js",
|
|
19
|
-
"mycode": "dist/cli.js"
|
|
20
|
-
"claude": "dist/cli.js"
|
|
20
|
+
"mycode": "dist/cli.js"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
23
|
"dist",
|
|
@@ -37,11 +37,14 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"scripts": {
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"check": "npm run prepare-src && tsc --noEmit",
|
|
40
|
+
"build": "npm run check && npm pack --dry-run",
|
|
41
|
+
"check": "npm run validate:repo && npm run verify:dist && npm test",
|
|
43
42
|
"start": "node dist/cli.js",
|
|
44
|
-
"
|
|
43
|
+
"test": "node --test tests/*.test.mjs",
|
|
44
|
+
"validate:repo": "node scripts/validate-release.mjs",
|
|
45
|
+
"verify:dist": "node scripts/verify-dist.mjs",
|
|
46
|
+
"package:release": "npm run check && node scripts/package-release.mjs",
|
|
47
|
+
"rebuild:experimental": "node scripts/build.mjs",
|
|
45
48
|
"verify:provider": "node scripts/verify-provider-route.mjs"
|
|
46
49
|
},
|
|
47
50
|
"engines": {
|