-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.66 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.66 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
{
"name": "@jannniiiii/opencode-claude-skill-sync",
"version": "1.0.0",
"description": "Automatically syncs OpenCode plugin skills to Claude Code ~/.claude/skills directory",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src tests --ext .ts",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"clean": "rm -rf dist"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.0.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.0.0",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^13.0.0",
"@semantic-release/release-notes-generator": "^12.1.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.0",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^8.0.0",
"prettier": "^3.1.0",
"semantic-release": "^24.0.0",
"typescript": "^5.3.0",
"vitest": "^1.0.0"
},
"keywords": [
"opencode",
"plugin",
"skills",
"claude",
"sync"
],
"author": "jannniiiii",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/randomm/opencode-claude-skill-sync.git"
},
"publishConfig": {
"access": "public"
}
}