-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 4.25 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 4.25 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "abc-electron-proto",
"version": "0.38.0",
"description": "Desktop application for working with music in ABC notation.",
"main": "src/main/index.js",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/topchyan/abcarus.git"
},
"homepage": "https://github.com/topchyan/abcarus",
"scripts": {
"start": "electron .",
"appimage": "bash scripts/build_appimage.sh",
"pbs:check": "node scripts/check_pbs_lock.mjs",
"pbs:check-runtime": "node scripts/check_pbs_runtime.mjs",
"predist:dir": "node scripts/check_pbs_runtime.mjs",
"predist:win": "node scripts/check_pbs_runtime.mjs",
"predist:mac": "node scripts/check_pbs_runtime.mjs",
"dist:dir": "electron-builder --dir",
"dist:win": "electron-builder --win --x64",
"dist:mac": "electron-builder --mac",
"test:measures": "node devtools/measures_harness/run_tests.js",
"test:codemirror": "node devtools/codemirror_harness/run_tests.mjs",
"test:transpose": "node devtools/transpose_harness/run_tests.js",
"test:note-preview": "node devtools/note_preview_harness/run_tests.mjs",
"test:settings": "node devtools/settings_harness/run_tests.js",
"test:truth-scale": "node devtools/truth_scale_53_harness/run_tests.js",
"test:abc2svg-playback": "node devtools/abc2svg_playback_harness/run_tests.js",
"test:charset": "node devtools/charset_harness/run_tests.js",
"test:focus-playback": "node devtools/focus_playback_harness/run_tests.js",
"test:fileops": "node scripts/check_no_raw_fileops.mjs",
"test:main-cli": "node scripts/check_main_cli_open.mjs",
"test:file-associations": "node scripts/check_file_associations.mjs",
"test:renderer-build": "node scripts/check_renderer_build.mjs",
"test:ui-smoke": "node scripts/ui_smoke.mjs",
"test:quick": "npm run -s test:settings && npm run -s test:focus-playback && npm run -s test:abc2svg-playback && npm run -s test:fileops && npm run -s test:main-cli && npm run -s test:file-associations && npm run -s test:renderer-build && npm run -s test:codemirror",
"size:report": "node devtools/size_report.js dist/appimage/AppDir",
"version:show": "node scripts/show-version.mjs",
"thirdparty:review": "node scripts/third_party-review.mjs",
"abc2svg:fetch-tip": "node scripts/fetch_abc2svg_tip_zip.mjs",
"abc2svg:upgrade": "node scripts/upgrade_abc2svg_from_source_zip.mjs",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major",
"publish:patch": "node scripts/publish.mjs patch",
"publish:minor": "node scripts/publish.mjs minor",
"publish:major": "node scripts/publish.mjs major"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"codemirror": "^6.0.2",
"electron": "^28.0.0",
"electron-builder": "^24.13.3",
"esbuild": "^0.27.2",
"semver": "^7.6.3"
},
"dependencies": {
"tabulator-tables": "^6.3.1"
},
"build": {
"appId": "com.abcarus.ABCarus",
"productName": "ABCarus",
"icon": "assets/icons/icon.png",
"fileAssociations": [
{
"ext": "abc",
"name": "ABC notation",
"description": "ABC notation score",
"mimeType": "text/x-abc",
"role": "Editor"
}
],
"files": [
"**/*",
"!dist/**",
"!debug_dumps/**",
"!docs/qa/chat-exports/**",
"!devtools/**",
"!roadmaps/**",
"!scripts/local/**",
"!third_party/python-embed/.cache/**",
"!third_party/python-runtime/**",
"!**/*.map"
],
"asar": true,
"asarUnpack": [
"third_party/abc2xml/**",
"third_party/xml2abc/**",
"third_party/midi2xml/**",
"third_party/python-embed/**"
],
"directories": {
"buildResources": "assets/icons",
"output": "dist/electron-builder"
},
"win": {
"target": [
"nsis",
"portable"
]
},
"mac": {
"target": [
"dmg"
],
"minimumSystemVersion": "10.15.0"
}
}
}