-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.7 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
{
"name": "opencode-github-sync",
"version": "3.0.1",
"description": "Sync your OpenCode config, skills, and selected sessions across machines via a private GitHub repo — as a plugin or a CLI.",
"type": "module",
"license": "MIT",
"author": "doomsday616",
"homepage": "https://github.com/doomsday616/opencode-github-sync#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/doomsday616/opencode-github-sync.git"
},
"bugs": {
"url": "https://github.com/doomsday616/opencode-github-sync/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"sync",
"config-sync",
"dotfiles",
"github",
"cli"
],
"engines": {
"node": ">=18"
},
"main": "./dist/plugin/index.js",
"types": "./dist/plugin/index.d.ts",
"exports": {
".": {
"types": "./dist/plugin/index.d.ts",
"default": "./dist/plugin/index.js"
},
"./core": {
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"opencode-sync": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}