-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "@godmode-plugin/git",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Structured git tools for GodMode Intelligence (status, diff, commit, push).",
"scripts": {
"build": "esbuild src/bridge.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/bridge.js --external:@godmode/plugin-api --external:@godmode/kernel",
"typecheck": "tsc --noEmit",
"test": "vitest run --no-file-parallelism",
"validate": "npm run typecheck && npm test && npm run build"
},
"dependencies": {},
"devDependencies": {
"@godmode/kernel": "file:../GodMode/packages/kernel",
"@godmode/plugin-api": "file:../GodMode/packages/plugin-api",
"@types/node": "^24.0.0",
"esbuild": "^0.25.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}