-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.69 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
{
"name": "remote-git",
"version": "0.3.0",
"private": true,
"scripts": {
"prepare": "node scripts/install-hooks.mjs",
"hooks:install": "node scripts/install-hooks.mjs",
"commitlint": "commitlint --config commitlint.config.cjs",
"lint:commits": "node scripts/lint-commits.mjs",
"test:hooks": "node --test scripts/pre-push.test.mjs",
"test:release-notes": "node --test scripts/release-notes.test.mjs",
"release:notes": "git-cliff --config cliff.toml",
"release:notes:github": "node scripts/generate-release-notes.mjs",
"dev": "turbo dev",
"build": "npm run icons:check && turbo build",
"icons:generate": "node scripts/generate-icons.mjs",
"icons:check": "node scripts/generate-icons.mjs --check",
"desktop:build": "npm run icons:check && turbo build --filter=desktop",
"desktop:dev": "npm run desktop:build && npm run start -w desktop",
"desktop:pack": "npm run desktop:build && npm run pack -w desktop",
"desktop:dist": "npm run desktop:build && npm run dist -w desktop",
"desktop:test": "npm run test -w desktop",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"desktop:test:unit": "npm run test:unit -w desktop",
"desktop:test:worktrees": "npm run desktop:build && npm run test:worktrees -w desktop"
},
"devDependencies": {
"@commitlint/cli": "21.2.2",
"@commitlint/config-conventional": "21.2.2",
"@resvg/resvg-js": "2.6.2",
"electron": "44.2.0",
"electron-builder": "^26.15.3",
"git-cliff": "2.13.1",
"js-yaml": "^4.3.2",
"prettier": "^3.8.3",
"turbo": "^2.9.12",
"typescript": "^6.0.3"
},
"workspaces": [
"packages/*",
"apps/*"
],
"packageManager": "npm@10.0.0"
}