-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.95 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
{
"name": "vite-plugin-pilot",
"version": "1.0.31",
"description": "AI Agent 驾驶浏览器的导航工具 — 打通 浏览器运行时 → Dev Server → 源码 → IDE 的完整链路",
"type": "module",
"bin": {
"pilot": "./dist/bin/pilot.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md",
"README_zh.md",
"SKILL.md",
"SETUP.md",
"LICENSE"
],
"scripts": {
"build": "vite build && chmod +x dist/bin/pilot.js && node scripts/write-inject-bundle.mjs",
"typecheck": "tsc --noEmit",
"dev": "vite build && chmod +x dist/bin/pilot.js && npx vite --config playground/vite.config.ts --host --port 5173 --strictPort",
"build:demo": "npx tsx playground/demo/build.ts",
"test": "npx tsx scripts/test.ts"
},
"peerDependencies": {
"@vue/compiler-dom": ">=3.3",
"magic-string": ">=0.30",
"vite": ">=5"
},
"peerDependenciesMeta": {
"@vue/compiler-dom": {
"optional": true
},
"magic-string": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^25.6.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/compiler-dom": "^3.5.34",
"magic-string": "^0.30.21",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"typescript": "^6.0.3",
"vite": "^8.0.11",
"vue": "^3.5.34",
"ws": "^8.20.0"
},
"keywords": [
"vite",
"plugin",
"ai",
"browser",
"automation",
"agent",
"pilot",
"dev-tools",
"claude"
],
"author": "2234839",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/2234839/vite-plugin-pilot.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"actions": {
"node-version": "24"
}
}