Fork @sinclair/typemap to @alkdev/typemap with @alkdev/typebox backend

- Rename package to @alkdev/typemap, update peerDeps to @alkdev/typebox
- Replace all @sinclair/typebox imports with @alkdev/typebox
- Replace @sinclair/hammer build system with standalone build.mjs
- Remove upstream-only files (.github, .vscode, design/, typemap.png)
- Update readme with fork notice and new package names
- Add fork copyright to license
This commit is contained in:
2026-04-23 15:36:51 +00:00
parent eb67d42876
commit 3b4dd4f1d1
70 changed files with 599 additions and 3302 deletions

View File

@@ -1,30 +1,26 @@
{
"name": "@sinclair/typemap",
"name": "@alkdev/typemap",
"version": "0.10.1",
"description": "Syntax Compiler and Translation System for Runtime Types",
"author": "sinclairzx81",
"author": "alkdev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/sinclairzx81/typemap"
"url": "https://git.alk.dev/alkdev/typemap"
},
"scripts": {
"benchmark": "hammer task benchmark",
"clean": "hammer task clean",
"start": "hammer task start",
"format": "hammer task format",
"test": "hammer task test",
"build": "hammer task build",
"publish": "hammer task publish"
"clean": "node build.mjs clean",
"format": "prettier --no-semi --single-quote --print-width 240 --trailing-comma all --write test src",
"test": "node build.mjs test",
"build": "node build.mjs build"
},
"peerDependencies": {
"@sinclair/typebox": "^0.34.30",
"@alkdev/typebox": "^0.34.49",
"valibot": "^1.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.2",
"@sinclair/hammer": "^0.18.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"mocha": "^11.0.1",