diff --git a/package.json b/package.json
index 226f9241e6cfe62c7ec2fe92431b970072885c78..5923b15169607af2ec4502a76d86378e89165f38 100644
--- a/package.json
+++ b/package.json
@@ -1,20 +1,27 @@
 {
 	"name": "@dbogatov/broken-links-inspector",
-	"version": "0.2.0",
+	"version": "0.2.1",
 	"description": "Extract and recursively check all URLs reporting broken ones",
-	"main": "dist/index.js",
-	"types": "dist/index.d.ts",
+	"main": "dist/inspector.js",
+	"types": "dist/inspector.d.ts",
 	"directories": {
 		"test": "test"
 	},
 	"scripts": {
-		"clean": "rm -rf .nyc_output coverage dist test-results.xml",
+		"clean": "rm -rf .nyc_output coverage dist test-results.xml junit-report.xml dump.lsif",
 		"test": "mocha --reporter spec -r ts-node/register test/**/*.ts",
 		"test-junit": "mocha --reporter mocha-junit-reporter -r ts-node/register test/**/*.ts",
 		"coverage": "nyc --reporter=html --reporter=cobertura --reporter=text -e .ts -n \"src/**/*.ts\" -x \"test/**/*.ts\" npm run test-junit",
 		"build": "tsc",
-		"prepare": "npm run build"
+		"prepublishOnly": "npm run build"
 	},
+	"bin": {
+		"bli": "dist/index.js"
+	},
+	"files": [
+		"dist",
+		"src"
+	],
 	"publishConfig": {
 		"@dbogatov:registry": "https://git.dbogatov.org/api/v4/projects/227/packages/npm/"
 	},
@@ -23,11 +30,15 @@
 		"url": "https://git.dbogatov.org/dbogatov/broken-links-inspector.git"
 	},
 	"keywords": [
+		"404",
 		"broken",
 		"links",
 		"checker",
 		"inspector",
+		"hyperlink",
+		"seo",
 		"bad",
+		"html",
 		"URL"
 	],
 	"author": "Dmytro Bogatov",
diff --git a/tsconfig.json b/tsconfig.json
index 3108f9c686b290363fbb92529651a2007d9c0925..fc74a53ce3df32f94aa92cfaef35e5908ea0f6d5 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -13,7 +13,7 @@
 		"declaration": true
 	},
 	"include": [
-		"src/**/*",
+		"src/**/*"
 	],
 	"exclude": [
 		"node_modules",