-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "lighthouse-agent-tooling",
"private": true,
"version": "1.0.0",
"description": "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.",
"workspaces": [
"apps/*",
"packages/*",
"tools/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "pnpm dlx eslint@9 .",
"lint:fix": "pnpm dlx eslint@9 . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"ci:local": "pnpm run lint && pnpm run format:check",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"type-check": "turbo run type-check",
"clean": "turbo run clean",
"prepare": "husky",
"verify-tests": "node scripts/verify-tests.js",
"package": "turbo run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Patrick-Ehimen/lighthouse-agent-tooling.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Patrick-Ehimen/lighthouse-agent-tooling/issues"
},
"homepage": "https://github.com/Patrick-Ehimen/lighthouse-agent-tooling#readme",
"packageManager": "pnpm@8.12.1+sha1.aa961ffce9b6eaa56307d9b5ff7e984f25b7eb58",
"devDependencies": {
"turbo": "^2.5.6",
"typescript": "^5.0.0",
"@types/node": "^20.0.0",
"eslint": "^9.36.0",
"prettier": "^3.3.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@types/jest": "^29.5.5",
"rimraf": "^6.0.1"
},
"pnpm": {
"overrides": {
"eslint": "^9.36.0",
"@typescript-eslint/eslint-plugin": "8.44.1",
"@typescript-eslint/parser": "8.44.1",
"typescript-eslint": "8.36.0",
"@eslint/js": "^9.31.0"
}
}
}