-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.42 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.42 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
118
119
120
121
122
{
"name": "statconverter",
"version": "1.3.03",
"description": "Statistical package converter using the DDI standard interface",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"prepare:r-portable": "node scripts/prepare-r-portable.js",
"start": "npm run build && cross-env NODE_ENV=development electron ./dist/main.js",
"predist": "cross-env NODE_ENV=production node scripts/check-env.js",
"dist": "node scripts/dist-dispatch.js",
"dist:publish": "npm run build && electron-builder --publish onTagOrDraft",
"rename:linux": "bash scripts/rename-binaries-linux.sh",
"rename:mac": "bash scripts/rename-binaries-mac.sh",
"rename:win": "powershell -ExecutionPolicy Bypass -File scripts/rename-binaries-windows.ps1"
},
"author": {
"name": "Adrian Dusa",
"email": "dusa.adrian@gmail.com"
},
"contributors": ["RODA"],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/RODA/StatConverter/issues"
},
"homepage": "https://github.com/RODA/StatConverter#readme",
"build": {
"appId": "StatConverter.tool",
"productName": "StatConverter",
"directories": {
"output": "build/output"
},
"extraResources": [
"LICENSE",
{
"from": "R-runtime",
"to": "R-runtime",
"filter": [
"**/*"
]
},
{
"from": "src/library/R",
"to": "library/R",
"filter": [
"**/*"
]
}
],
"win": {
"icon": "icons/StatConverter.ico",
"legalTrademarks": "Academic Non-Commercial License (see LICENSE file for details).",
"target": {
"target": "nsis",
"arch": [
"x64"
]
}
},
"mac": {
"icon": "icons/StatConverter.icns",
"category": "public.app-category.productivity",
"extendInfo": {
"NSHumanReadableCopyright": "© 2021-2025 Adrian Dusa — Academic Non-Commercial License (see LICENSE file for details)."
},
"target": {
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
},
"linux": {
"icon": "icons/StatConverter.png",
"category": "Utility",
"vendor": "RODA",
"maintainer": "Adrian Dusa <dusa.adrian@gmail.com>",
"desktop": {
"entry": {
"Comment": "Academic Non-Commercial License (see LICENSE file for details)."
}
}
},
"publish": {
"provider": "github",
"owner": "RODA",
"repo": "StatConverter"
},
"beforePack": "./scripts/electron-builder-before-pack.js"
},
"devDependencies": {
"@types/electron": "^1.4.38",
"@types/lodash": "^4.17.24",
"@types/serviceworker": "^0.0.195",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^26.9.0",
"eslint": "^10.2.1",
"ts-loader": "^9.5.7",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"webpack": "^5.106.2",
"webpack-cli": "^7.0.2"
},
"dependencies": {
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"bootstrap": "^5.3.8",
"electron-updater": "^6.8.4",
"lodash": "^4.18.1",
"tippy.js": "^6.3.7",
"uuid": "^14.0.0",
"ws": "^8.20.0"
},
"postinstall": "electron-builder install-app-deps"
}