-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.78 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.78 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
{
"name": "@pantheon-org/opencode-agent-loader-plugin",
"version": "0.0.1",
"description": "Dynamic agent specification loader for OpenCode - Load custom AI agents from TypeScript files",
"keywords": [
"opencode",
"plugin",
"typescript",
"ai",
"agents",
"agent-loader",
"dynamic-loading"
],
"homepage": "https://github.com/pantheon-org/opencode-agent-loader-plugin#readme",
"bugs": {
"url": "https://github.com/pantheon-org/opencode-agent-loader-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pantheon-org/opencode-agent-loader-plugin.git"
},
"license": "MIT",
"type": "module",
"main": "index.ts",
"files": [
"index.ts",
"src/",
"README.md",
"LICENSE"
],
"scripts": {
"test": "bun test src",
"test:coverage": "bun test --coverage src/",
"test:watch": "bun test --watch src/",
"test:verbose": "bun test src/ --reporter tap",
"type-check": "bun tsc --noEmit --project tsconfig.test.json",
"lint": "eslint src/",
"lint:md": "markdownlint-cli2",
"lint:md:fix": "markdownlint-cli2 --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,mjs,cjs,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,mjs,cjs,css}\"",
"clean": "rm -rf dist/ .bun-cache/ coverage/",
"build": "bun tsc",
"dev": "bun tsc --watch",
"verify:package": "npm pack --dry-run",
"prepublishOnly": "bun run build && bun test && bun run verify:package"
},
"dependencies": {
"@opencode-ai/sdk": "^1.1.19",
"csstype": "^3.1.3",
"undici-types": "^7.16.0",
"zod": "^4.1.8"
},
"devDependencies": {
"@nx/esbuild": "22.1.3",
"@nx/jest": "22.1.3",
"@nx/js": "22.1.3",
"@octokit/rest": "^20.0.0",
"@opencode-ai/plugin": "^1.0.133",
"@swc/cli": "~0.6.0",
"@swc/helpers": "~0.5.11",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"bun-types": "^1.3.3",
"esbuild": "^0.19.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^61.4.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-tsdoc": "^0.5.0",
"jest": "^30.0.2",
"jest-environment-node": "^30.0.2",
"jest-util": "^30.0.2",
"jsonc-eslint-parser": "^2.1.0",
"markdownlint-cli2": "^0.19.1",
"prettier": "^3.7.4",
"ts-jest": "^29.4.0",
"ts-node": "10.9.1",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"zod": "^4.1.13"
},
"engines": {
"node": ">=20.0.0",
"bun": ">=1.0.0"
}
}