-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
{
"name": "@mcmunder/opencode-git-memory",
"version": "0.0.4",
"description": "An OpenCode plugin that gives your AI agent conversation context scoped to your branch and traveling with your code.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun run build:bundle && bun run build:types",
"build:bundle": "bun build src/index.ts --outfile dist/index.js --format esm --target bun --external @opencode-ai/plugin",
"build:types": "tsc --project tsconfig.build.json",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "oxfmt 'src/**/*.ts'",
"format:check": "oxfmt --check 'src/**/*.ts'",
"version": "changeset version",
"release": "bun run build && changeset publish",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"commit-msg": "bunx commitlint --edit $1",
"pre-commit": "bunx lint-staged"
},
"keywords": [
"opencode",
"plugin",
"git",
"notes",
"memory",
"conversation"
],
"license": "MIT",
"author": "mcmunder",
"repository": {
"type": "git",
"url": "https://github.com/mcmunder/opencode-git-memory.git"
},
"homepage": "https://github.com/mcmunder/opencode-git-memory#readme",
"bugs": {
"url": "https://github.com/mcmunder/opencode-git-memory/issues"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@eslint/js": "^9.39.1",
"@opencode-ai/plugin": "1.2.27",
"@types/bun": "1.3.10",
"@types/node": "^20.11.5",
"bun-types": "^1.3.11",
"eslint": "^9.39.1",
"eslint-config-prettier": "10.1.8",
"lint-staged": "^15.2.0",
"oxfmt": "^0.42.0",
"simple-git-hooks": "^2.13.1",
"typescript-eslint": "^8.57.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.1.0",
"typescript": "^5"
}
}