-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
21 lines (21 loc) · 956 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "chatgit-extension",
"version": "1.1.5",
"private": true,
"description": "Browser extension build scaffold for ChatGit.",
"dependencies": {
"@resvg/resvg-js": "2.6.2"
},
"scripts": {
"build": "node scripts/build.mjs",
"build:chrome": "node scripts/build.mjs",
"build:firefox": "node scripts/build.mjs",
"bump": "node scripts/bump-version.mjs",
"sync-version": "node scripts/sync-version.mjs",
"check:version": "node scripts/check-version.mjs",
"version": "npm run sync-version && git add package.json src/manifests/manifest.chrome.json src/manifests/manifest.firefox.json",
"release:patch": "npm version patch -m \"chore(release): v%s\" && git push origin main --follow-tags",
"release:minor": "npm version minor -m \"chore(release): v%s\" && git push origin main --follow-tags",
"release:major": "npm version major -m \"chore(release): v%s\" && git push origin main --follow-tags"
}
}