spoclip-kit 1.0.6 → 1.0.8

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 +4 -4
  2. package/package.json +5 -10
package/README.md CHANGED
@@ -37,13 +37,13 @@ npm install
37
37
  spoclip 계정으로 로그인 후
38
38
 
39
39
  ```bash
40
- npm login
40
+ npm run login
41
41
  ```
42
42
 
43
43
  ```bash
44
- npm release:patch
45
- npm release:minor
46
- npm release:major
44
+ npm run release:patch
45
+ npm run release:minor
46
+ npm run release:major
47
47
  ```
48
48
 
49
49
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spoclip-kit",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "description": "TypeScript utility library for internal use",
6
6
  "main": "dist/index.js",
@@ -59,15 +59,10 @@
59
59
  "require": "./dist/index.js",
60
60
  "types": "./dist/index.d.ts"
61
61
  },
62
- "./utils": {
63
- "import": "./dist/utils/index.esm.js",
64
- "require": "./dist/utils/index.js",
65
- "types": "./dist/utils/index.d.ts"
66
- },
67
- "./math": {
68
- "import": "./dist/math/index.esm.js",
69
- "require": "./dist/math/index.js",
70
- "types": "./dist/math/index.d.ts"
62
+ "./libs": {
63
+ "import": "./dist/libs/index.esm.js",
64
+ "require": "./dist/libs/index.js",
65
+ "types": "./dist/libs/index.d.ts"
71
66
  }
72
67
  },
73
68
  "publishConfig": {