@maravilla-labs/vite-plugin 0.8.1 → 1.0.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/LICENSE +12 -0
  2. package/package.json +14 -14
package/LICENSE ADDED
@@ -0,0 +1,12 @@
1
+ Proprietary License
2
+
3
+ Copyright (c) 2025 SOLUTAS GmbH, Switzerland. All rights reserved.
4
+
5
+ This software and associated documentation (the "Software") are the confidential and proprietary information of SOLUTAS GmbH ("SOLUTAS"). By using, copying, or accessing the Software, you agree that:
6
+
7
+ - No rights are granted except as expressly set forth in a separate written agreement with SOLUTAS.
8
+ - You may not copy, modify, distribute, sublicense, reverse engineer, or create derivative works of the Software except as permitted in such agreement.
9
+ - The Software is provided "as is" without warranty of any kind; SOLUTAS disclaims all implied warranties to the maximum extent permitted by law.
10
+ - In no event shall SOLUTAS be liable for any damages arising from use of the Software except as expressly provided in an applicable agreement.
11
+
12
+ For licensing inquiries, contact: legal@solutas.ch
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maravilla-labs/vite-plugin",
3
- "version": "0.8.1",
3
+ "version": "1.0.0",
4
4
  "description": "Vite plugin for Maravilla Runtime development",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -14,26 +14,21 @@
14
14
  "files": [
15
15
  "dist"
16
16
  ],
17
- "scripts": {
18
- "build": "tsup",
19
- "dev": "tsup --watch",
20
- "typecheck": "tsc --noEmit"
21
- },
22
17
  "dependencies": {
23
- "@maravilla-labs/adapter-core": "^0.5.0",
24
- "@maravilla-labs/functions": "^0.5.0",
25
- "node-fetch": "^3.3.2"
18
+ "node-fetch": "^3.3.2",
19
+ "@maravilla-labs/adapter-core": "^1.0.0",
20
+ "@maravilla-labs/functions": "^0.9.0"
26
21
  },
27
22
  "devDependencies": {
28
- "@maravilla-labs/platform": "^0.4.0",
29
23
  "@types/node": "^20.10.5",
30
24
  "tsup": "^8.0.1",
31
25
  "typescript": "^5.3.3",
32
- "vite": "^8.0.0"
26
+ "vite": "^8.0.0",
27
+ "@maravilla-labs/platform": "^0.9.0"
33
28
  },
34
29
  "peerDependencies": {
35
- "@maravilla-labs/platform": ">=0.3.5",
36
- "vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0"
30
+ "vite": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0",
31
+ "@maravilla-labs/platform": "^0.9.0"
37
32
  },
38
33
  "keywords": [
39
34
  "vite",
@@ -50,5 +45,10 @@
50
45
  },
51
46
  "publishConfig": {
52
47
  "access": "public"
48
+ },
49
+ "scripts": {
50
+ "build": "tsup",
51
+ "dev": "tsup --watch",
52
+ "typecheck": "tsc --noEmit"
53
53
  }
54
- }
54
+ }