{
	"name": "@nlib/typing",
	"description": "A tool for generating and managing TypeScript type definitions efficiently.",
	"publishConfig": {
		"access": "public"
	},
	"version": "3.0.4",
	"license": "Apache-2.0",
	"author": {
		"name": "Kei Ito",
		"email": "kei.itof@gmail.com",
		"url": "https://gojabako.zone"
	},
	"homepage": "https://github.com/nlibjs/typing",
	"repository": "https://github.com/nlibjs/typing",
	"type": "module",
	"exports": {
		"./package.json": "./package.json",
		".": {
			"import": "./mjs/mod.mjs",
			"require": "./cjs/mod.cjs",
			"types": "./types/mod.d.ts"
		}
	},
	"files": [
		"cjs",
		"mjs",
		"types",
		"!**/*.test.*"
	],
	"scripts": {
		"test": "run-s build:index test:*",
		"test:type": "tsc",
		"test:unit": "node --test \"src/**/*.test.ts\"",
		"test:example": "node --test example.test.ts",
		"lint": "biome check",
		"build": "run-s build:*",
		"build:index": "node cli/generate-index.ts",
		"build:types": "tsc",
		"build:code": "node cli/build.ts",
		"version": "run-s version:*",
		"version:changelog": "npx @nlib/changelog --output CHANGELOG.md",
		"version:add-changelog": "git add CHANGELOG.md",
		"version:sync-version": "node cli/sync-version.ts",
		"version:add-jsr": "git add jsr.json"
	},
	"devDependencies": {
		"@biomejs/biome": "2.2.5",
		"@types/node": "24.7.2",
		"npm-run-all": "4.1.5",
		"typescript": "5.9.3"
	},
	"renovate": {
		"extends": [
			"github>nlibjs/renovate-config"
		]
	}
}
