-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.8 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "practicesync",
"productName": "Hope Assistant",
"version": "1.3.6",
"description": "Reads patient visits from Practice Fusion and creates the matching coded appointments in SimplePractice — automatically.",
"main": "src/main/main.js",
"author": "Hope Assistant",
"license": "UNLICENSED",
"private": true,
"scripts": {
"start": "electron .",
"verify-open": "node test/open-site.js",
"verify-interact": "node test/interact-site.js",
"demo": "node demo/run-demo.js",
"demo:site": "node demo/site-demo.js",
"inspect": "node scripts/inspect-dom.js",
"accounts": "node scripts/run-demo-accounts.js",
"test": "node test/extract.test.js && node test/parser.test.js && node test/demo-e2e.test.js && node test/recorder.test.js && node test/teach.test.js && node test/real-accounts.test.js",
"make-icon": "node build/make-icon.js && npm run icon",
"icon": "cd build && rm -rf icon.iconset && mkdir icon.iconset && for s in 16 32 128 256 512; do dd=$((s*2)); sips -z $s $s icon-1024.png --out icon.iconset/icon_${s}x${s}.png; sips -z $dd $dd icon-1024.png --out icon.iconset/icon_${s}x${s}@2x.png; done && sips -z 1024 1024 icon-1024.png --out icon.iconset/icon_512x512@2x.png && iconutil -c icns icon.iconset -o icon.icns",
"apple-helper": "bash build/build-apple-helper.sh",
"dist": "npm run apple-helper && electron-builder --mac dmg",
"sync": "node scripts/sync-run.js"
},
"devDependencies": {
"electron": "^31.0.0",
"electron-builder": "^24.13.3"
},
"build": {
"appId": "com.practicesync.app",
"productName": "Hope Assistant",
"copyright": "© 2026 Hope Assistant",
"afterPack": "build/afterPack.js",
"files": [
"src/**/*",
"package.json"
],
"extraResources": [
{
"from": "build/bin",
"to": "bin"
}
],
"directories": {
"output": "dist",
"buildResources": "build"
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"arm64"
]
}
],
"category": "public.app-category.medical",
"darkModeSupport": true,
"identity": null,
"icon": "build/icon.icns"
},
"publish": [
{
"provider": "github",
"owner": "hatimhtm",
"repo": "practicesync",
"releaseType": "release"
}
],
"dmg": {
"title": "Hope Assistant",
"artifactName": "HopeAssistant-Installer.dmg",
"contents": [
{
"x": 140,
"y": 180
},
{
"x": 400,
"y": 180,
"type": "link",
"path": "/Applications"
}
]
},
"asarUnpack": [
"node_modules/playwright-core/**"
]
},
"dependencies": {
"jsdom": "^25.0.0",
"playwright-core": "^1.48.0"
}
}