-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.3 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.3 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
94
95
{
"name": "opencode-hashline",
"version": "1.4.1",
"description": "Hashline plugin for OpenCode — content-addressable line hashing for precise AI code editing",
"main": "dist/opencode-hashline.cjs",
"module": "dist/opencode-hashline.js",
"types": "dist/opencode-hashline.d.ts",
"type": "module",
"engines": {
"node": "^22.3.0"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/opencode-hashline.d.ts",
"import": "./dist/opencode-hashline.js",
"require": "./dist/opencode-hashline.cjs"
},
"./utils": {
"types": "./dist/utils.d.ts",
"import": "./dist/utils.js",
"require": "./dist/utils.cjs"
}
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome check src/",
"lint:fix": "biome check --fix src/",
"format": "biome format --write src/",
"benchmark": "npx tsx benchmarks/benchmark.ts",
"prepublishOnly": "npm run build",
"prepare": "husky"
},
"keywords": [
"opencode",
"opencode-plugin",
"plugin",
"hashline",
"line-hashing",
"ai",
"code-editing"
],
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "^1.2.2",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@opencode-ai/plugin": "^1.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.2.3",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"semantic-release": "^25.0.3",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8",
"zod": "~4.4.3"
},
"dependencies": {},
"lint-staged": {
"*.{ts,js,json}": [
"biome check --fix --no-errors-on-unmatched"
]
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}