Make it into library

This commit is contained in:
Yura Dupyn 2026-04-06 16:05:09 +02:00
parent aa7ce6e064
commit beab541907
5 changed files with 732 additions and 0 deletions

16
package.json Normal file
View file

@ -0,0 +1,16 @@
{
"name": "source-region",
"version": "0.1.0",
"description": "Source text manipulation and span rendering utilities",
"author": "Yura Dupyn <yura@dupyn.com>",
"license": "GPL-3.0-or-later",
"type": "module",
"main": "src/index.ts",
"types": "src/index.ts",
"scripts": {
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"typescript": "^5.4.0"
}
}