cccproxy 1.1.0 → 1.2.0

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -74,7 +74,7 @@ Or add to your `.claude/settings.json`:
74
74
 
75
75
  ## License
76
76
 
77
- MIT License - see [LICENSE](LICENSE) for details.
77
+ MIT License - see LICENSE for details.
78
78
 
79
79
  ## Acknowledgments
80
80
 
package/package.json CHANGED
@@ -1,12 +1,14 @@
1
1
  {
2
2
  "name": "cccproxy",
3
- "version": "1.1.0",
3
+ "version": "1.2.0",
4
+ "license": "MIT",
4
5
  "type": "module",
5
6
  "bin": {
6
7
  "cccproxy": "dist/index.js"
7
8
  },
8
9
  "files": [
9
- "dist"
10
+ "dist",
11
+ "LICENSE"
10
12
  ],
11
13
  "scripts": {
12
14
  "build": "tsup src/index.ts --format esm --target node18 --clean",