@raclettejs/types 0.0.2 → 0.1.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 (3) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +51 -0
  3. package/package.json +2 -2
package/LICENSE.md ADDED
@@ -0,0 +1,21 @@
1
+ # MIT License
2
+
3
+ Copyright (c) 2025 Pacifico Digital Explorations GmbH
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,51 @@
1
+ <!--![Latest release](https://gitlab.com/raclettejs/types/-/badges/release.svg)-->
2
+
3
+ > [!important] Beta Phase!
4
+ > Raclett is still in the Beta phase. There might be breaking changes over the next couple of month so be aware of migration needs. Visit our [Milestone Overview](https://gitlab.com/groups/raclettejs/-/milestones) for more insights and estimates
5
+
6
+ ## What is this?
7
+
8
+ This is only the types repository for **Raclette**
9
+
10
+ ## What is **raclette**?
11
+
12
+ **raclette** is a full-stack TypeScript meta-framework designed for building **platforms and portals** with minimal setup. It comes with bootstrapped features like authentication, WebSockets, database handling, containerization, and provides an easy-to-use, opinionated environment.
13
+
14
+ **Perfect for:**
15
+
16
+ - 🚀 **SaaS platforms** - Get to market faster with built-in auth and user management
17
+ - 🏢 **Customer/Supplier portals** - Enterprise-ready from day one
18
+ - 🛠️ **Internal business tools** - Focus on business logic, not infrastructure
19
+ - ⚡ **MVPs that can scale** - Start fast, grow clean with the plugin architecture
20
+
21
+ **Key Features:**
22
+
23
+ - **Widget-based frontend** (Vue.js + Vite, React support coming)
24
+ - **Plugin architecture** for reusable business logic
25
+ - **Built-in workbench** - Admin interface out of the box
26
+ - **Full-stack development** with Fastify backend + MongoDB
27
+ - **Docker containerization** for easy deployment
28
+
29
+ ## What You Get
30
+
31
+ - ✅ **raclette core & workbench** dependencies with dev dependencies
32
+ - ✅ **raclette.config.js** - Main configuration file
33
+ - ✅ **Development scripts** ready to go
34
+ - ✅ **ESLint + Prettier** configuration
35
+ - ✅ **TypeScript** setup
36
+ - ✅ **Docker-ready** development environment
37
+
38
+ ## [Getting Started](https://docs.raclettejs.com/docs/introduction/getting-started)
39
+
40
+ Visit the [Getting Started Guide](https://docs.raclettejs.com/docs/introduction/getting-started) in our [online Documentation](https://docs.raclettejs.com)
41
+
42
+ ## Links
43
+
44
+ - 🌐 [Website](https://raclettejs.com/)
45
+ - 📚 [Documentation](https://docs.raclettejs.com/)
46
+ - 🚀 [GitLab](https://gitlab.com/raclettejs) (source code)
47
+ - 📦 [npm](https://www.npmjs.com/org/raclettejs) (packages)
48
+
49
+ ## License
50
+
51
+ [MIT](https://gitlab.com/raclettejs/types/-/blob/main/LICENSE?ref_type=heads)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/types",
3
- "version": "0.0.2",
3
+ "version": "0.1.0",
4
4
  "description": "Type definitions for the raclette framework",
5
5
  "types": "dist/index.d.ts",
6
6
  "repository": "https://gitlab.com/raclettejs/types",
@@ -24,6 +24,6 @@
24
24
  "@raclettejs/core": "*"
25
25
  },
26
26
  "devDependencies": {
27
- "@raclettejs/core": "^0.0.1"
27
+ "@raclettejs/core": "latest"
28
28
  }
29
29
  }