atollic 0.0.3 → 0.0.4

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 +21 -0
  2. package/README.md +5 -0
  3. package/package.json +11 -4
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Arvin Wilderink
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 CHANGED
@@ -1,5 +1,10 @@
1
1
  # atollic
2
2
 
3
+ [![npm version](https://img.shields.io/npm/v/atollic.svg)](https://www.npmjs.com/package/atollic)
4
+ [![CI](https://github.com/awilderink/atollic/actions/workflows/ci.yml/badge.svg)](https://github.com/awilderink/atollic/actions/workflows/ci.yml)
5
+ [![License: MIT](https://img.shields.io/npm/l/atollic.svg)](./LICENSE)
6
+ [![Bundle size](https://img.shields.io/bundlephobia/minzip/atollic)](https://bundlephobia.com/package/atollic)
7
+
3
8
  Island architecture for WinterCG-compatible runtimes. Bring your own server (Elysia, Hono, …) and your own UI framework, powered by Vite.
4
9
 
5
10
  > **Status: experimental.** atollic is pre-1.0 (`v0.0.x`). The API may change between minor versions until 1.0.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atollic",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Island architecture for WinterCG-compatible runtimes. Bring-your-own server (Elysia, Hono, …) and UI framework, powered by Vite.",
5
5
  "keywords": [
6
6
  "wintercg",
@@ -23,15 +23,20 @@
23
23
  "homepage": "https://github.com/awilderink/atollic#readme",
24
24
  "type": "module",
25
25
  "scripts": {
26
- "dev:elysia": "bunx --bun vite --config examples/elysia/vite.config.ts",
27
- "dev:hono": "bunx --bun vite --config examples/hono/vite.config.ts",
26
+ "dev:elysia": "cd examples/elysia && bunx --bun vite",
27
+ "dev:hono": "cd examples/hono && bunx --bun vite",
28
28
  "build": "vite build && tsc",
29
+ "build:examples": "cd examples/elysia && bunx --bun vite build && cd ../hono && bunx --bun vite build",
29
30
  "prepare": "npm run build",
30
31
  "prepublishOnly": "npm run build",
31
32
  "typecheck": "tsc --noEmit && tsc --noEmit --project examples/elysia/tsconfig.json && tsc --noEmit --project examples/hono/tsconfig.json",
32
33
  "format": "biome format --write .",
33
34
  "lint": "biome lint .",
34
- "check": "biome check --write ."
35
+ "check": "biome check --write .",
36
+ "test": "bun test",
37
+ "changeset": "changeset",
38
+ "version": "changeset version",
39
+ "release": "changeset publish"
35
40
  },
36
41
  "exports": {
37
42
  ".": {
@@ -115,6 +120,8 @@
115
120
  },
116
121
  "devDependencies": {
117
122
  "@biomejs/biome": "^2.4.7",
123
+ "@changesets/changelog-github": "^0.5.0",
124
+ "@changesets/cli": "^2.27.10",
118
125
  "@types/node": "^25.5.0",
119
126
  "bun-types": "^1.3.11",
120
127
  "elysia": "^1.4.28",