ubugeeei 3.1.1 → 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.
Files changed (3) hide show
  1. package/README.md +3 -2
  2. package/dist/cli.mjs +11 -1
  3. package/package.json +10 -8
package/README.md CHANGED
@@ -22,7 +22,7 @@
22
22
  - [Vue.js](https://vuejs.org/about/team.html) Core Team
23
23
  - [Vue.js Japan User Group](https://github.com/vuejs-jp) Core Staff
24
24
  - [Vite+](https://github.com/voidzero-dev/vite-plus) Core Contributor
25
- - [株式会社メイツ](https://github.com/mates-inc) Chief Engineer
25
+ - [株式会社メイツ](https://github.com/mates-dev) Chief Engineer
26
26
 
27
27
  ## INTERESTS
28
28
 
@@ -51,6 +51,8 @@ Tasks / recent work / PR requests
51
51
  - [Vapor Moon](https://github.com/ubugeeei/vapor-moon): a MoonBit-first SFC toolchain with Vue-like authoring and direct DOM / SSR output
52
52
  - [Mbt on Rails](https://github.com/ubugeeei/mbt-on-rails): a MoonBit-first, Rails-inspired framework skeleton
53
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
54
56
  - [tnix](https://github.com/ubugeeei/tnix): a gradual type system and tooling stack for Nix that compiles `.tnix` to `.nix`
55
57
  - [ush](https://github.com/ubugeeei/ush): an experimental Rust shell that stays POSIX-first and compiles `.ush` to portable `sh`
56
58
 
@@ -85,4 +87,3 @@ Tasks / recent work / PR requests
85
87
 
86
88
  - [vuejs/vue-vapor](https://github.com/vuejs/vue-vapor)
87
89
  - [vuejs-jp/vuefes-2025-website](https://github.com/vuejs-jp/vuefes-2025-website)
88
-
package/dist/cli.mjs CHANGED
@@ -129,6 +129,16 @@ const projects = [
129
129
  url: "https://github.com/ubugeeei/corsa-bind",
130
130
  description: "Rust and Node bindings plus orchestration layers for typescript-go over stdio."
131
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
+ },
132
142
  {
133
143
  name: "tnix",
134
144
  url: "https://github.com/ubugeeei/tnix",
@@ -381,7 +391,7 @@ function renderProfile(locale) {
381
391
  `${INDENT}${link("https://vuejs.org/about/team.html", "Vue.js")} Core Team`,
382
392
  `${INDENT}${link("https://github.com/vuejs-jp", "Vue.js Japan User Group")} Core Staff`,
383
393
  `${INDENT}${link("https://github.com/voidzero-dev/vite-plus", "Vite+")} Core Contributor`,
384
- `${INDENT}${link("https://github.com/mates-inc", "株式会社メイツ")} Chief Engineer`
394
+ `${INDENT}${link("https://github.com/mates-dev", "株式会社メイツ")} Chief Engineer`
385
395
  ];
386
396
  const interestLines = wrapItems(t.interests, BODY_WIDTH, ", ").map((line) => `${INDENT}${line}`);
387
397
  return [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ubugeeei",
3
- "version": "3.1.1",
4
- "description": "Hi! I'm ubugeeei, Vue.js team member, author of chibivue and vize",
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,9 +41,5 @@
35
41
  "engines": {
36
42
  "node": ">=24.0.0"
37
43
  },
38
- "scripts": {
39
- "build": "vp pack",
40
- "dev": "node dist/cli.mjs",
41
- "watch": "vp pack --watch"
42
- }
43
- }
44
+ "packageManager": "pnpm@10.33.0"
45
+ }