source-region/package.json
2026-04-06 20:15:21 +02:00

25 lines
625 B
JSON

{
"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",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.4.0"
}
}