-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.77 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
{
"name": "@withakay/opencode-autopilot",
"version": "0.4.3",
"description": "Autopilot plugin for OpenCode - autonomous multi-step task continuation slop generator",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
".opencode/commands/autopilot.md",
".opencode/agents/*.md",
".opencode/wingman-config.json",
".opencode/wingman-config.schema.json",
"scripts/install-slash-command.mjs"
],
"scripts": {
"build": "bun build ./index.ts --outdir ./dist --target node --sourcemap --external @opencode-ai/plugin --external @opencode-ai/sdk",
"typecheck": "tsc --noEmit",
"test": "bun test ./__tests__/",
"lint": "biome check .",
"format": "biome format . --write",
"check": "bun run lint && bun run typecheck",
"prepublishOnly": "bun run build",
"postinstall": "node scripts/install-slash-command.mjs"
},
"keywords": [
"opencode",
"autopilot",
"agent",
"automation",
"ai",
"coding"
],
"author": "Withakay",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/withakay/opencode-autopilot.git"
},
"bugs": {
"url": "https://github.com/withakay/opencode-autopilot/issues"
},
"homepage": "https://github.com/withakay/opencode-autopilot#readme",
"peerDependencies": {
"@opencode-ai/plugin": "^1.3.0",
"@opencode-ai/sdk": "^1.3.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@opencode-ai/plugin": "^1.14.50",
"@opencode-ai/sdk": "^1.14.50",
"bun-types": "^1.3.14",
"effect": "4.0.0-beta.65",
"typescript": "^6.0.3"
}
}