@stacksjs/security 0.51.0 → 0.52.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 +14 -15
package/README.md CHANGED
@@ -36,7 +36,7 @@ pnpm test
36
36
 
37
37
  Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
38
38
 
39
- ## 💪🏼 Contributing
39
+ ## 🚜 Contributing
40
40
 
41
41
  Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
42
42
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/security",
3
3
  "type": "module",
4
- "version": "0.51.0",
5
- "packageManager": "pnpm@7.26.3",
4
+ "version": "0.52.0",
5
+ "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks framework security.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -22,7 +22,12 @@
22
22
  "typescript",
23
23
  "javascript"
24
24
  ],
25
- "main": "dist/index.mjs",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.mjs"
29
+ }
30
+ },
26
31
  "module": "dist/index.mjs",
27
32
  "types": "dist/index.d.ts",
28
33
  "contributors": [
@@ -32,25 +37,19 @@
32
37
  "dist",
33
38
  "README.md"
34
39
  ],
35
- "engines": {
36
- "node": ">=v18.14.0",
37
- "pnpm": ">=7.26.3"
38
- },
39
40
  "peerDependencies": {
40
41
  "bcryptjs": "^2.4.3",
41
42
  "crypto-js": "^4.1.1",
42
- "js-base64": "^3.7.4",
43
- "@stacksjs/config": "0.51.0",
44
- "@stacksjs/types": "0.51.0"
43
+ "js-base64": "^3.7.5",
44
+ "@stacksjs/config": "0.52.0",
45
+ "@stacksjs/types": "0.52.0"
45
46
  },
46
47
  "devDependencies": {
47
- "mkdist": "^1.1.0",
48
- "typescript": "^4.9.5",
49
- "@stacksjs/testing": "0.51.0"
48
+ "@stacksjs/development": "0.52.0"
50
49
  },
51
50
  "scripts": {
52
- "build": "mkdist -d",
53
- "dev": "mkdist -d",
51
+ "build": "unbuild",
52
+ "dev": "unbuild --stub",
54
53
  "typecheck": "tsc --noEmit"
55
54
  }
56
55
  }