-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.92 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@cynos-ai/tools",
"version": "0.3.0",
"description": "Cynos universal search, vision, and browser tools for the pi coding agent.",
"keywords": [
"pi-package",
"pi-extension",
"cynos",
"search",
"vision",
"browser",
"playwright"
],
"license": "MIT",
"author": "Jay Shen <shenjiecode@gmail.com>",
"engines": {
"node": ">=22"
},
"homepage": "https://github.com/cynos-ai/tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cynos-ai/tools.git"
},
"publishConfig": {
"access": "public"
},
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.js",
"default": "./index.js"
}
},
"scripts": {
"typecheck": "tsc -p tsconfig.json",
"test": "vitest run",
"verify": "npm run typecheck && npm test && npm run build:smoke",
"build": "node scripts/build.mjs",
"build:smoke": "npm run build && node scripts/smoke-built-index.mjs && node scripts/smoke-built-index.mjs --without-playwright",
"pack:dry-run": "node scripts/check-pack.mjs",
"prepack": "npm run build",
"prepublishOnly": "npm run verify"
},
"files": [
"README.md",
"README-zh-CN.md",
"LICENSE",
"THIRD_PARTY_NOTICES.md",
"index.js",
"index.d.ts"
],
"pi": {
"extensions": [
"./index.js"
]
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "0.80.10",
"@earendil-works/pi-tui": "0.80.10",
"@types/node": "25.9.5",
"esbuild": "0.28.1",
"playwright-core": "1.61.1",
"typebox": "1.3.6",
"typescript": "5.9.3",
"vitest": "4.1.10"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": ">=0.80.2",
"@earendil-works/pi-tui": ">=0.80.2",
"typebox": ">=1.0.59",
"playwright-core": ">=1.61.1"
},
"peerDependenciesMeta": {
"playwright-core": {
"optional": true
}
}
}