-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.87 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.87 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@arcede/air-sdk",
"version": "0.3.1",
"mcpName": "io.github.ArcedeDev/air-sdk",
"description": "Execution intelligence for browser automation agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./playwright": {
"types": "./dist/adapters/playwright.d.ts",
"import": "./dist/adapters/playwright.mjs",
"require": "./dist/adapters/playwright.js"
},
"./puppeteer": {
"types": "./dist/adapters/puppeteer.d.ts",
"import": "./dist/adapters/puppeteer.mjs",
"require": "./dist/adapters/puppeteer.js"
},
"./browser-use": {
"types": "./dist/adapters/browser-use.d.ts",
"import": "./dist/adapters/browser-use.mjs",
"require": "./dist/adapters/browser-use.js"
},
"./mcp": {
"types": "./dist/mcp/server.d.ts",
"import": "./dist/mcp/server.mjs",
"require": "./dist/mcp/server.js"
}
},
"bin": {
"air-sdk": "./dist/cli/entry.js",
"air-mcp": "./dist/mcp/server.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"version": "node -e \"const v=require('./package.json').version;require('fs').writeFileSync('src/version.ts','/** SDK version — kept in sync with package.json by npm version */\\nexport const SDK_VERSION = \\x27'+v+'\\x27;\\n')\"",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"playwright": ">=1.40.0",
"puppeteer": ">=22.0.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
},
"puppeteer": {
"optional": true
}
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.11.0",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^9.0.0",
"playwright": "^1.42.0",
"puppeteer": "^22.0.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vitest": "^1.2.0"
},
"keywords": [
"playwright",
"puppeteer",
"browser-automation",
"ai-agent",
"web-automation",
"smart-selectors",
"execution-intelligence",
"macro",
"mcp",
"browser-use"
],
"author": "frans <info@arcede.com>",
"repository": {
"type": "git",
"url": "https://github.com/ArcedeDev/air-sdk.git"
},
"bugs": {
"url": "https://github.com/ArcedeDev/air-sdk/issues"
},
"homepage": "https://agentinternetruntime.com/docs/sdk",
"license": "MIT",
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}