@pdg/crypto 1.0.0 → 1.0.1

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 +18 -11
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # crypto
1
+ # @pdg/crypto
2
2
 
3
3
  Typescript Crypto Module
4
4
 
package/package.json CHANGED
@@ -1,12 +1,19 @@
1
1
  {
2
2
  "name": "@pdg/crypto",
3
3
  "title": "Typescript Crypto Module",
4
- "version": "1.0.0",
5
- "description": "API Module",
4
+ "description": "Typescript Crypto Module",
5
+ "version": "1.0.1",
6
6
  "type": "module",
7
- "types": "dist/index.d.ts",
8
- "main": "dist/index.js",
9
- "module": "dist/index.esm.js",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.esm.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.esm.js",
13
+ "require": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ }
16
+ },
10
17
  "repository": {
11
18
  "type": "git",
12
19
  "url": "git+https://github.com/parkdigy/crypto.git",
@@ -36,6 +43,12 @@
36
43
  "typescript",
37
44
  "javascript"
38
45
  ],
46
+ "dependencies": {
47
+ "base-64": "^1.0.0",
48
+ "md5": "^2.3.0",
49
+ "sha.js": "^2.4.11",
50
+ "utf8": "^3.0.0"
51
+ },
39
52
  "devDependencies": {
40
53
  "@eslint/js": "^9.28.0",
41
54
  "@rollup/plugin-commonjs": "^28.0.3",
@@ -61,11 +74,5 @@
61
74
  "ts-node": "^10.9.2",
62
75
  "typescript": "^5.8.3",
63
76
  "typescript-eslint": "^8.33.0"
64
- },
65
- "dependencies": {
66
- "base-64": "^1.0.0",
67
- "md5": "^2.3.0",
68
- "sha.js": "^2.4.11",
69
- "utf8": "^3.0.0"
70
77
  }
71
78
  }