forked from malhashemi/opencode-skills
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 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
{
"name": "opencode-skills",
"version": "0.1.7",
"description": "Anthropic Agent Skills Specification plugin for OpenCode - discover and execute skills with dynamic tool registration",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "M. Adel Alhashemi",
"repository": {
"type": "git",
"url": "git+https://github.com/malhashemi/opencode-skills.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"opencode",
"skills",
"anthropic",
"plugin",
"agent",
"ai",
"claude"
],
"homepage": "https://github.com/malhashemi/opencode-skills#readme",
"bugs": {
"url": "https://github.com/malhashemi/opencode-skills/issues"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "echo 'No tests (internal functions not exported)' && exit 0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.0.126"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.126",
"@types/bun": "^1.3.0",
"bun-types": "^1.3.0",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"dependencies": {
"@opencode-ai/sdk": "^1.0.126",
"gray-matter": "^4.0.3",
"zod": "^3.23.0"
}
}