ubugeeei 3.1.0 → 3.1.3
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.
- package/README.md +7 -5
- package/dist/cli.mjs +21 -1
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
<img width="300" src="https://github.com/ubugeeei/sponsors/blob/main/sponsors-transparent.png?raw=true">
|
|
2
|
+
|
|
1
3
|
# UBUGEEEI(1)
|
|
2
4
|
|
|
3
5
|
## NAME
|
|
@@ -20,7 +22,7 @@
|
|
|
20
22
|
- [Vue.js](https://vuejs.org/about/team.html) Core Team
|
|
21
23
|
- [Vue.js Japan User Group](https://github.com/vuejs-jp) Core Staff
|
|
22
24
|
- [Vite+](https://github.com/voidzero-dev/vite-plus) Core Contributor
|
|
23
|
-
- [株式会社メイツ](https://github.com/mates-
|
|
25
|
+
- [株式会社メイツ](https://github.com/mates-dev) Chief Engineer
|
|
24
26
|
|
|
25
27
|
## INTERESTS
|
|
26
28
|
|
|
@@ -48,6 +50,10 @@ Tasks / recent work / PR requests
|
|
|
48
50
|
- [relanote](https://github.com/ubugeeei/relanote): a music programming language based on relative intervals
|
|
49
51
|
- [Vapor Moon](https://github.com/ubugeeei/vapor-moon): a MoonBit-first SFC toolchain with Vue-like authoring and direct DOM / SSR output
|
|
50
52
|
- [Mbt on Rails](https://github.com/ubugeeei/mbt-on-rails): a MoonBit-first, Rails-inspired framework skeleton
|
|
53
|
+
- [corsa-bind](https://github.com/ubugeeei/corsa-bind): Rust and Node bindings plus orchestration layers for typescript-go over stdio
|
|
54
|
+
- [Hand-Writing SVG Generator](https://hand-writing-svg-generator.void.app/): draw left, tune right, export when it feels right
|
|
55
|
+
- [Shadorial](https://ubugeeei.github.io/shadorial/): learn shader programming interactively with 19 hands-on chapters covering GLSL, WebGL2, and Three.js
|
|
56
|
+
- [tnix](https://github.com/ubugeeei/tnix): a gradual type system and tooling stack for Nix that compiles `.tnix` to `.nix`
|
|
51
57
|
- [ush](https://github.com/ubugeeei/ush): an experimental Rust shell that stays POSIX-first and compiles `.ush` to portable `sh`
|
|
52
58
|
|
|
53
59
|
## SELECTED POSTS
|
|
@@ -81,7 +87,3 @@ Tasks / recent work / PR requests
|
|
|
81
87
|
|
|
82
88
|
- [vuejs/vue-vapor](https://github.com/vuejs/vue-vapor)
|
|
83
89
|
- [vuejs-jp/vuefes-2025-website](https://github.com/vuejs-jp/vuefes-2025-website)
|
|
84
|
-
|
|
85
|
-
## SUPPORT
|
|
86
|
-
|
|
87
|
-

|
package/dist/cli.mjs
CHANGED
|
@@ -124,6 +124,26 @@ const projects = [
|
|
|
124
124
|
url: "https://github.com/ubugeeei/mbt-on-rails",
|
|
125
125
|
description: "A MoonBit-first, Rails-inspired framework skeleton."
|
|
126
126
|
},
|
|
127
|
+
{
|
|
128
|
+
name: "corsa-bind",
|
|
129
|
+
url: "https://github.com/ubugeeei/corsa-bind",
|
|
130
|
+
description: "Rust and Node bindings plus orchestration layers for typescript-go over stdio."
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
name: "Hand-Writing SVG Generator",
|
|
134
|
+
url: "https://hand-writing-svg-generator.void.app/",
|
|
135
|
+
description: "Draw left, tune right, export when it feels right."
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
name: "Shadorial",
|
|
139
|
+
url: "https://ubugeeei.github.io/shadorial/",
|
|
140
|
+
description: "Learn shader programming interactively with 19 hands-on chapters covering GLSL, WebGL2, and Three.js."
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
name: "tnix",
|
|
144
|
+
url: "https://github.com/ubugeeei/tnix",
|
|
145
|
+
description: "A gradual type system and tooling stack for Nix that compiles .tnix to .nix."
|
|
146
|
+
},
|
|
127
147
|
{
|
|
128
148
|
name: "ush",
|
|
129
149
|
url: "https://github.com/ubugeeei/ush",
|
|
@@ -371,7 +391,7 @@ function renderProfile(locale) {
|
|
|
371
391
|
`${INDENT}${link("https://vuejs.org/about/team.html", "Vue.js")} Core Team`,
|
|
372
392
|
`${INDENT}${link("https://github.com/vuejs-jp", "Vue.js Japan User Group")} Core Staff`,
|
|
373
393
|
`${INDENT}${link("https://github.com/voidzero-dev/vite-plus", "Vite+")} Core Contributor`,
|
|
374
|
-
`${INDENT}${link("https://github.com/mates-
|
|
394
|
+
`${INDENT}${link("https://github.com/mates-dev", "株式会社メイツ")} Chief Engineer`
|
|
375
395
|
];
|
|
376
396
|
const interestLines = wrapItems(t.interests, BODY_WIDTH, ", ").map((line) => `${INDENT}${line}`);
|
|
377
397
|
return [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ubugeeei",
|
|
3
|
-
"version": "3.1.
|
|
4
|
-
"description": "Hi! I'm ubugeeei, Vue.js team member, author of chibivue and
|
|
3
|
+
"version": "3.1.3",
|
|
4
|
+
"description": "Hi! I'm ubugeeei, Vue.js team member, author of chibivue, vize, and corsa-bind",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"card",
|
|
7
7
|
"chibivue",
|
|
@@ -27,6 +27,12 @@
|
|
|
27
27
|
"dist"
|
|
28
28
|
],
|
|
29
29
|
"type": "module",
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "vp pack",
|
|
32
|
+
"dev": "node dist/cli.mjs",
|
|
33
|
+
"prepack": "pnpm run build",
|
|
34
|
+
"watch": "vp pack --watch"
|
|
35
|
+
},
|
|
30
36
|
"devDependencies": {
|
|
31
37
|
"@types/node": "^24.0.0",
|
|
32
38
|
"typescript": "^5.0.0",
|
|
@@ -35,8 +41,5 @@
|
|
|
35
41
|
"engines": {
|
|
36
42
|
"node": ">=24.0.0"
|
|
37
43
|
},
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
"watch": "vp pack --watch"
|
|
41
|
-
}
|
|
42
|
-
}
|
|
44
|
+
"packageManager": "pnpm@10.33.0"
|
|
45
|
+
}
|