-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "@4ier/neo",
"version": "2.1.0",
"description": "Turn any website into an AI-callable API. Passive traffic capture, API schema generation, and execution.",
"type": "module",
"scripts": {
"build": "cross-env NEO_ENTRY=background vite build && cross-env NEO_ENTRY=content vite build && cross-env NEO_ENTRY=inject vite build",
"test": "node tools/neo.test.cjs"
},
"bin": {
"neo": "tools/neo.cjs"
},
"files": [
"tools/neo.cjs",
"extension-dist/background.js",
"extension-dist/content.js",
"extension-dist/inject.js",
"extension-dist/manifest.json"
],
"keywords": [
"browser",
"api",
"chrome",
"cdp",
"automation",
"web-scraping",
"ai-agent",
"openclaw"
],
"repository": {
"type": "git",
"url": "git+https://github.com/4ier/neo.git"
},
"license": "MIT",
"author": "4ier",
"dependencies": {
"ws": "^8.19.0"
},
"devDependencies": {
"@types/chrome": "^0.0.303",
"@types/node": "^22.10.5",
"cross-env": "^10.1.0",
"dexie": "^4.0.11",
"typescript": "^5.8.2",
"vite": "^6.0.0"
}
}