-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 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
{
"name": "agentpage",
"version": "1.0.0",
"description": "Embeddable AI Agent SDK for browsers — let AI operate your web pages via tool-calling",
"keywords": [
"ai",
"agent",
"browser",
"dom",
"web-agent",
"tool-calling"
],
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsdown",
"check": "tsc --noEmit && pnpm lint",
"lint": "oxlint",
"format": "oxfmt --write",
"format:check": "oxfmt --check",
"demo": "pnpm --dir demo dev",
"demo:v2": "pnpm --dir demo-v2 dev",
"demo:install": "pnpm --dir demo install",
"demo:v2:install": "pnpm --dir demo-v2 install",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@floating-ui/dom": "^1.7.6",
"@sinclair/typebox": "^0.34.0"
},
"devDependencies": {
"@types/chrome": "^0.1.36",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"tsdown": "^0.20.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}