-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "opencode-synced",
"version": "0.9.0",
"description": "Sync global opencode config across machines via GitHub.",
"author": {
"name": "Ian Hildebrand"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/iHildy/opencode-synced.git"
},
"publishConfig": {
"access": "public"
},
"files": ["dist"],
"dependencies": {
"@opencode-ai/plugin": "1.0.85"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/node": "^20.11.5",
"bun-types": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && cp -r src/command dist/command",
"prepack": "bun run build",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"check": "biome check --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,ts,json}": ["biome check --write --no-errors-on-unmatched"]
}
}