summaryrefslogtreecommitdiff
path: root/package.json
blob: 3e31124f6dccf0b0ad5e0b28eb1a3f6a7d8c725c (plain)
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
{
  "name": "pi-castle-cdp-search",
  "version": "0.1.0",
  "private": true,
  "description": "Web search for pi through an already-running Chrome on the wire network, driven over CDP",
  "keywords": [
    "pi-package",
    "pi-extension",
    "search",
    "cdp",
    "chrome"
  ],
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=22.0.0"
  },
  "files": [
    "src/",
    "tsconfig.json",
    "README.md"
  ],
  "pi": {
    "extensions": [
      "./src/index.ts"
    ]
  },
  "scripts": {
    "typecheck": "tsc --noEmit",
    "test": "node --experimental-strip-types --test test/*.test.ts"
  },
  "devDependencies": {
    "@earendil-works/pi-ai": "*",
    "@earendil-works/pi-coding-agent": "*",
    "typebox": "*",
    "typescript": "^5.0.0"
  }
}