Browse Source

chore: update projects

master
Muthu Kumar 4 weeks ago
parent
commit
716741855f
Failed to extract signature
  1. 6
      package.json
  2. 28
      src/pages/main/data/project.ts

6
package.json

@ -1,12 +1,12 @@
{ {
"name": "pw2", "name": "pw2",
"version": "0.1.0", "version": "2.0.0",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {
"start": "vite --host", "dev": "vite --host",
"check": "tsc --noEmit", "check": "tsc --noEmit",
"build": "tsc && vite build", "prepare": "tsc && vite build",
"serve": "vite preview", "serve": "vite preview",
"blog": "node scripts/blog.js" "blog": "node scripts/blog.js"
}, },

28
src/pages/main/data/project.ts

@ -18,6 +18,14 @@ export const projects: Project[] = [
tags: ["react", "vite"], tags: ["react", "vite"],
}, },
{ {
title: "comptime.ts",
description:
"A TypeScript compiler for compile-time expressions, for fewer runtime computations; similar to Zig comptime.",
url: "https://github.com/feathers-studio/comptime.ts",
cat: "compiler",
tags: ["typescript", "compiler", "comptime"],
},
{
title: "hyperactive", title: "hyperactive",
description: "Suite of fast, reactive web-app development libraries.", description: "Suite of fast, reactive web-app development libraries.",
url: "https://github.com/codefeathers/hyperactive", url: "https://github.com/codefeathers/hyperactive",
@ -25,14 +33,6 @@ export const projects: Project[] = [
tags: ["reactive", "ui-framework", "typescript"], tags: ["reactive", "ui-framework", "typescript"],
}, },
{ {
title: "deno shims",
description:
"Node shims for Deno’s runtime API. Transferred to official denoland.",
url: "https://github.com/denoland/node_shims",
cat: "lib",
tags: ["deno", "shims"],
},
{
title: "Telegraf", title: "Telegraf",
description: description:
"Active maintainer of one of the most popular Telegram Bot API libraries for TypeScript.", "Active maintainer of one of the most popular Telegram Bot API libraries for TypeScript.",
@ -54,13 +54,21 @@ export const projects: Project[] = [
description: description:
"The most complete PostgreSQL schema generator for TypeScript, Kysely, Zod, and others.", "The most complete PostgreSQL schema generator for TypeScript, Kysely, Zod, and others.",
url: "https://github.com/feathers-studio/true-pg", url: "https://github.com/feathers-studio/true-pg",
cat: "lib", cat: "codegen",
tags: ["postgresql", "schema", "typescript", "kysely", "zod"], tags: ["postgresql", "schema", "kysely", "zod"],
}, },
]; ];
export const otherProjects: Project[] = [ export const otherProjects: Project[] = [
{ {
title: "deno shims",
description:
"Node shims for Deno’s runtime API. Transferred to official denoland.",
url: "https://github.com/denoland/node_shims",
cat: "lib",
tags: ["deno", "shims"],
},
{
title: "Telecraft", title: "Telecraft",
description: "Pluggable Minecraft server administration toolkit.", description: "Pluggable Minecraft server administration toolkit.",
url: "https://github.com/MadrasMC/telecraft", url: "https://github.com/MadrasMC/telecraft",

Loading…
Cancel
Save