forked from Patrick-Ehimen/lighthouse-agent-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 828 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 828 Bytes
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
{
"name": "@lighthouse-tooling/types",
"version": "0.1.0",
"description": "Shared TypeScript types and interfaces for Lighthouse AI integration system",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rimraf dist",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"keywords": [
"lighthouse",
"types",
"typescript",
"mcp",
"ai",
"storage"
],
"author": "Lighthouse Team",
"license": "MIT",
"devDependencies": {
"typescript": "^5.9.2"
}
}