npc-agent 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "npc-agent",
3
+ "version": "1.0.0",
4
+ "description": "Your browser's NPC. Handles the side quests.",
5
+ "type": "module",
6
+ "bin": {
7
+ "npc": "./dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsc",
11
+ "start": "node dist/index.js",
12
+ "relay": "node dist/index.js --relay-only",
13
+ "prepublishOnly": "npm run build"
14
+ },
15
+ "files": [
16
+ "dist/",
17
+ "extension/",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "author": "Freya Zou <suzyzou34@gmail.com> (https://freyazou.com)",
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "https://github.com/freyzo/npc.git"
26
+ },
27
+ "homepage": "https://github.com/freyzo/npc#readme",
28
+ "bugs": {
29
+ "url": "https://github.com/freyzo/npc/issues"
30
+ },
31
+ "keywords": [
32
+ "mcp",
33
+ "browser-automation",
34
+ "chrome-extension",
35
+ "cdp",
36
+ "devtools",
37
+ "cursor",
38
+ "vscode",
39
+ "npc"
40
+ ],
41
+ "dependencies": {
42
+ "@modelcontextprotocol/sdk": "^1.12.1",
43
+ "ws": "^8.17.0",
44
+ "zod": "^3.23.0"
45
+ },
46
+ "devDependencies": {
47
+ "@types/node": "^20.0.0",
48
+ "@types/ws": "^8.5.10",
49
+ "typescript": "^5.4.0"
50
+ },
51
+ "engines": {
52
+ "node": ">=18.0.0"
53
+ }
54
+ }