-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.22 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.22 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
{
"name": "gitcontext",
"private": true,
"author": "kccarlos",
"license": "MIT",
"description": "GitContext helps you package local file diffs and code into a single, clean prompt, ensuring your AI chatbot has the precise information it needs — all without your code ever leaving your machine.",
"workspaces": [
"apps/*",
"packages/*"
],
"version": "1.0.0",
"packageManager": "npm@10.8.2",
"type": "module",
"scripts": {
"build": "npm -ws run build",
"dev": "npm --workspace apps/web run dev",
"start": "npm --workspace apps/web run dev",
"lint": "npm -ws run lint",
"test": "echo 'no tests yet'",
"ci": "npm ci --audit --omit=dev",
"prepare": "husky || true",
"desktop:dev": "npm --workspace apps/desktop run tauri:dev",
"desktop:build": "npm --workspace apps/desktop run tauri:build",
"web:dev": "npm --workspace apps/web run dev",
"web:build": "npm --workspace apps/web run build",
"web:preview": "npm --workspace apps/web run preview",
"web:lint": "npm --workspace apps/web run lint"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "^10.0.3",
"buffer": "6.0.3",
"husky": "9.1.6",
"semantic-release": "24.2.0",
"vite": "^7.1.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist-all/**/*.dmg",
"dist-all/**/*.exe",
"dist-all/**/*.AppImage",
"dist-all/**/*.msi",
"dist-all/**/*.deb",
"dist-all/**/*.rpm"
]
}
],
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}