kbfetch 0.0.4 → 0.0.5

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 (1) hide show
  1. package/package.json +4 -3
package/package.json CHANGED
@@ -1,16 +1,17 @@
1
1
  {
2
2
  "name": "kbfetch",
3
- "module": "index.ts",
3
+ "main": "./dist/index.js",
4
+ "module": "./dist/index.js",
4
5
  "type": "module",
5
- "version": "0.0.4",
6
+ "version": "0.0.5",
6
7
  "license": "MIT",
7
8
  "types": "./dist/typings/index.d.ts",
8
9
  "files": [
9
10
  "dist"
10
11
  ],
11
12
  "scripts": {
12
- "patch": "git stash && npm version patch && git stash pop",
13
13
  "pub": "bun bld && bun tsc && bun patch && npm publish --registry https://registry.npmjs.org/ ; bun updatetaobao ",
14
+ "patch": "git stash && npm version patch && git stash pop",
14
15
  "tsc": "tsc index.ts -d --emitDeclarationOnly --declarationDir ./dist/typings",
15
16
  "bld": "bun build ./index.ts --outdir ./dist",
16
17
  "updatetaobao": "cnpm sync kbfetch"