Skip to content

Commit 842b4e1

Browse files
committed
minor fixes
1 parent 6e8811a commit 842b4e1

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# lighthouse-agent-tooling
1+
# Lighthouse Agent Tooling
22

33
Lighthouse Agent Tooling – A set of connectors, IDE extensions, and AI-native developer tools to seamlessly integrate Lighthouse into AI-powered workflows. Supports MCP (Model Context Protocol) connectors, Cursor/IDE extensions for pinning and encrypting datasets/models.
44

@@ -12,10 +12,6 @@ This repo uses ESLint (flat config) and Prettier for consistent code quality and
1212

1313
Pre-commit hooks via Husky run lint-staged to format and lint changed files.
1414

15-
# Lighthouse Agent Tooling
16-
17-
Lighthouse Agent Tooling – A set of connectors, IDE extensions, and AI-native developer tools to seamlessly integrate Lighthouse into AI-powered workflows. Supports MCP (Model Context Protocol) connectors, Cursor/IDE extensions for pinning and encrypting datasets/models.
18-
1915
## Prerequisites
2016

2117
- **Node.js**: v18+ (recommended: v22+)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
},
2929
"keywords": [],
3030
"author": "",
31-
"license": "ISC",
31+
"license": "MIT",
3232
"type": "commonjs",
3333
"bugs": {
3434
"url": "https://github.com/Patrick-Ehimen/lighthouse-agent-tooling/issues"

packages/types/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",
77
"scripts": {
8+
"build": "tsc",
9+
"dev": "tsc --watch",
10+
"clean": "rm -rf dist",
11+
"type-check": "tsc --noEmit",
812
"lint": "eslint .",
913
"lint:fix": "eslint . --fix",
1014
"format": "prettier --write .",

turbo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"dependsOn": ["^build"],
66
"outputs": ["build/**", "dist/**", "out/**", ".next/**", "!.next/cache/**"]
77
},
8-
"check-types": {
9-
"dependsOn": ["^check-types"]
8+
"type-check": {
9+
"dependsOn": ["^type-check"]
1010
},
1111
"dev": {
1212
"persistent": true,

0 commit comments

Comments
 (0)