-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.33 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
{
"name": "levelcompiler",
"productName": "Level-Compiler",
"version": "1.6.1",
"description": "Stratigraphic Correlation Viewer and Compiler",
"main": "main.js",
"scripts": {
"start": "electron .",
"test": "node scripts/run-project-tests.js",
"test:cli": "node -r ./scripts/register-original-fs.js tests/run-all-tests.js",
"test:e2e": "playwright test --config tests/playwright.config.js",
"export:test-answer": "node -r ./scripts/register-original-fs.js scripts/export-test-answer.js",
"build:win": "electron-builder --win --x64",
"build:mac": "electron-builder --mac --arm64",
"build:mac-univ": "electron-builder --mac --universal"
},
"author": "ky",
"license": "MIT",
"dependencies": {
"@msgpack/msgpack": "^3.1.2",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"electron-progressbar": "^2.2.1",
"electron-prompt": "^1.7.0",
"electron-updater": "^6.8.3",
"jsondiffpatch": "^0.7.3",
"jszip": "^3.10.1",
"license-checker": "^25.0.1",
"sharp": "^0.34.3"
},
"build": {
"appId": "io.github.ky_apps.Level-Compiler",
"npmRebuild": false,
"files": [
"package.json",
"main.js",
"main/**",
"ipc/**",
"LC_modules/**",
"preload/**",
"renderer/**",
"icon/**",
"oss-attribution/**",
"LICENSE",
"ThirdPartyNotices.txt",
"!renderer/js/1.5/**",
"!renderer/js/1.6/**",
"!renderer/js/1.9/**",
"!resources/**",
"!dist/**"
],
"publish": {
"provider": "github",
"owner": "keitaroyamada",
"repo": "Level-Compiler"
},
"artifactName": "${productName}-Setup-${version}.${ext}",
"win": {
"target": [
"nsis"
],
"icon": "./icon/levelcompiler.png"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "./icon/levelcompiler.png",
"hardenedRuntime": true,
"entitlements": "entitlements.mac.plist",
"entitlementsInherit": "entitlements.mac.plist"
},
"linux": {
"icon": "./icon/levelcompiler.png"
},
"extraResources": [
"resources/"
]
},
"devDependencies": {
"@emnapi/runtime": "^1.5.0",
"@playwright/test": "^1.58.2",
"electron": "^41.3.0",
"electron-builder": "^26.8.1",
"electronmon": "^2.0.3",
"playwright": "^1.58.2"
}
}