forked from amicalhq/amical
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.29 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
{
"name": "amical",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md,json,mjs,mts,css,mdx}\"",
"format:check": "turbo run format:check",
"type:check": "turbo run type:check",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ui": "turbo run test:ui"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.3",
"typescript": "5.8.2"
},
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=24"
},
"pnpm": {
"overrides": {
"@electron-forge/maker-dmg": "https://registry.npmjs.org/@fellow/maker-dmg/-/maker-dmg-7.4.0.tgz",
"node-abi": "4.14.0",
"@types/minimatch": "3.0.5"
},
"ignoredBuiltDependencies": [
"@tailwindcss/oxide",
"core-js-pure",
"electron",
"electron-winstaller",
"esbuild",
"keytar",
"protobufjs",
"sharp",
"@amical/whisper-wrapper",
"drizzle-orm/libsql"
],
"onlyBuiltDependencies": [
"electron",
"electron-winstaller",
"@amical/whisper-wrapper",
"drizzle-orm/libsql",
"@libsql",
"macos-alias",
"fs-xattr",
"onnxruntime-node",
"jest-worker"
]
}
}