@stacksjs/desktop 0.50.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 +18 -19
package/README.md CHANGED
@@ -28,7 +28,7 @@ pnpm test
28
28
 
29
29
  Please see our [releases](https://github.com/stacksjs/stacks/releases) page for more information on what has changed recently.
30
30
 
31
- ## 💪🏼 Contributing
31
+ ## 🚜 Contributing
32
32
 
33
33
  Please review the [Contributing Guide](https://github.com/stacksjs/contributing) for details.
34
34
 
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@stacksjs/desktop",
3
3
  "type": "module",
4
- "version": "0.50.0",
5
- "packageManager": "pnpm@7.25.1",
4
+ "version": "0.52.0",
5
+ "packageManager": "pnpm@8.5.1",
6
6
  "description": "The Stacks Desktop engine.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -31,7 +31,12 @@
31
31
  "Maizzle",
32
32
  "maizzle"
33
33
  ],
34
- "main": "dist/index.mjs",
34
+ "exports": {
35
+ ".": {
36
+ "types": "./dist/index.d.ts",
37
+ "import": "./dist/index.mjs"
38
+ }
39
+ },
35
40
  "module": "dist/index.mjs",
36
41
  "types": "dist/index.d.ts",
37
42
  "contributors": [
@@ -41,28 +46,22 @@
41
46
  "dist",
42
47
  "README.md"
43
48
  ],
44
- "engines": {
45
- "node": ">=v18.13.0",
46
- "pnpm": ">=7.25.1"
47
- },
48
49
  "peerDependencies": {
49
- "@tauri-apps/api": "1.2.0",
50
- "@tauri-apps/cli": "1.2.3",
51
- "unified-network": "0.6.2",
52
- "unstorage": "^1.0.1",
53
- "vue": "3.2.45",
50
+ "@tauri-apps/api": "1.3.0",
51
+ "@tauri-apps/cli": "1.3.1",
52
+ "unified-network": "0.6.4",
53
+ "unstorage": "^1.6.0",
54
+ "vue": "3.3.2",
54
55
  "vue3-highlightjs": "^1.0.5",
55
- "@stacksjs/build": "0.50.0",
56
- "@stacksjs/server": "0.50.0"
56
+ "@stacksjs/build": "0.52.0",
57
+ "@stacksjs/server": "0.52.0"
57
58
  },
58
59
  "devDependencies": {
59
- "mkdist": "^1.1.0",
60
- "typescript": "^4.9.4",
61
- "@stacksjs/testing": "0.50.0"
60
+ "@stacksjs/development": "0.52.0"
62
61
  },
63
62
  "scripts": {
64
- "build": "mkdist -d",
65
- "dev": "mkdist -d",
63
+ "build": "unbuild",
64
+ "dev": "unbuild --stub",
66
65
  "typecheck": "tsc --noEmit"
67
66
  }
68
67
  }