diff --git a/package.json b/package.json index bfc670c..1a1970a 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "pw2", - "version": "0.1.0", + "version": "2.0.0", "private": true, "type": "module", "scripts": { - "start": "vite --host", + "dev": "vite --host", "check": "tsc --noEmit", - "build": "tsc && vite build", + "prepare": "tsc && vite build", "serve": "vite preview", "blog": "node scripts/blog.js" }, diff --git a/src/pages/main/data/project.ts b/src/pages/main/data/project.ts index b518327..91c2bf7 100644 --- a/src/pages/main/data/project.ts +++ b/src/pages/main/data/project.ts @@ -18,6 +18,14 @@ export const projects: Project[] = [ 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", description: "Suite of fast, reactive web-app development libraries.", url: "https://github.com/codefeathers/hyperactive", @@ -25,14 +33,6 @@ export const projects: Project[] = [ 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", description: "Active maintainer of one of the most popular Telegram Bot API libraries for TypeScript.", @@ -54,13 +54,21 @@ export const projects: Project[] = [ description: "The most complete PostgreSQL schema generator for TypeScript, Kysely, Zod, and others.", url: "https://github.com/feathers-studio/true-pg", - cat: "lib", - tags: ["postgresql", "schema", "typescript", "kysely", "zod"], + cat: "codegen", + tags: ["postgresql", "schema", "kysely", "zod"], }, ]; 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", description: "Pluggable Minecraft server administration toolkit.", url: "https://github.com/MadrasMC/telecraft",