-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.76 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
{
"name": "ariatype-monorepo",
"version": "1.0.0",
"private": true,
"license": "AGPL-3.0-only",
"description": "AriaType - Voice to Text Application Monorepo",
"scripts": {
"check:i18n": "node scripts/check-i18n.mjs",
"lint:commit": "commitlint",
"check:md-links": "node scripts/check-md-links.mjs",
"changelog": "node scripts/generate-changelog.mjs",
"version:patch": "pnpm --filter @ariatype/desktop version:patch",
"version:minor": "pnpm --filter @ariatype/desktop version:minor",
"version:major": "pnpm --filter @ariatype/desktop version:major",
"prepare": "simple-git-hooks",
"dev": "npm run tauri:dev",
"build": "node scripts/build-all.mjs",
"build:unsigned": "npm run tauri:build:mac:unsigned",
"build:all": "node scripts/build-all.mjs",
"build:all:unsigned": "node scripts/build-all.mjs --unsigned",
"tauri:dev": "pnpm --filter @ariatype/desktop tauri:dev",
"tauri:build:mac": "pnpm --filter @ariatype/desktop tauri:build:mac",
"tauri:build:mac:unsigned": "pnpm --filter @ariatype/desktop tauri:build:mac:unsigned",
"tauri:build:mac-arm": "pnpm --filter @ariatype/desktop tauri:build:mac-arm",
"tauri:build:mac-intel": "pnpm --filter @ariatype/desktop tauri:build:mac-intel",
"tauri:build:mac-universal": "pnpm --filter @ariatype/desktop tauri:build:mac-universal",
"tauri:build:win": "pnpm --filter @ariatype/desktop tauri:build:win",
"release:local": "pnpm tauri:build:mac && pnpm build:website",
"release:local:universal": "pnpm tauri:build:mac-universal && pnpm build:website",
"dev:website": "pnpm --filter @ariatype/website dev",
"build:website": "npm run build --prefix packages/website && node scripts/sync-website-export.mjs",
"e2e": "pnpm --filter @ariatype/desktop run test:e2e",
"test:e2e": "pnpm --filter @ariatype/desktop run test:e2e"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit \"$1\" && node scripts/check-commit-msg.mjs \"$1\"",
"pre-commit": "./scripts/pre-commit-hook.sh",
"post-commit": "./scripts/post-commit-hook.sh"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.15.0",
"pnpm": {
"overrides": {
"cross-spawn": "7.0.6",
"flatted": "3.4.2",
"glob": "10.5.0",
"minimatch": "10.2.4",
"picomatch": "4.0.4",
"picomatch@2": "2.3.2",
"semver-regex": "4.0.5",
"trim-newlines": "5.0.0",
"http-cache-semantics": "4.2.0",
"fast-xml-parser": "5.7.3",
"got": "11.8.5",
"file-type": "22.0.1",
"postcss": "8.5.14",
"vite": "8.0.10"
}
}
}