@stacksjs/objects 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 -13
package/README.md CHANGED
@@ -41,7 +41,7 @@ pnpm test
41
41
 
42
42
  Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
43
43
 
44
- ## 💪🏼 Contributing
44
+ ## 🚜 Contributing
45
45
 
46
46
  Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
47
47
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/objects",
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 objects.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -22,7 +22,12 @@
22
22
  "functions",
23
23
  "stacks"
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,21 +37,17 @@
32
37
  "dist",
33
38
  "README.md"
34
39
  ],
35
- "engines": {
36
- "node": ">=v18.14.0",
37
- "pnpm": ">=7.26.3"
38
- },
39
40
  "dependencies": {
40
- "@stacksjs/collections": "0.51.0"
41
+ "@stacksjs/collections": "0.52.0",
42
+ "@stacksjs/types": "0.52.0",
43
+ "@stacksjs/utils": "0.52.0"
41
44
  },
42
45
  "devDependencies": {
43
- "mkdist": "^1.1.0",
44
- "typescript": "^4.9.5",
45
- "@stacksjs/testing": "0.51.0"
46
+ "@stacksjs/development": "0.52.0"
46
47
  },
47
48
  "scripts": {
48
- "build": "mkdist -d",
49
- "dev": "mkdist -d",
49
+ "build": "unbuild",
50
+ "dev": "unbuild --stub",
50
51
  "typecheck": "tsc --noEmit"
51
52
  }
52
53
  }