-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 KB
/
package.json
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
{
"name": "statconverter",
"version": "1.2.0",
"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",
"start": "npm run build && electron ./dist/main.js",
"dist": "npm run build && electron-builder"
},
"author": "RODA",
"license": "CC0-1.0",
"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"
},
"win": {
"icon": "build/StatConverter.ico",
"legalTrademarks": "MIT Licence",
"target": {
"target": "nsis",
"arch": [
"x64"
]
}
},
"mac": {
"category": "public.app-category.productivity",
"target": {
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
"icon": "build/StatConverter.icns"
}
},
"devDependencies": {
"@types/electron": "^1.4.38",
"@types/emscripten": "^1.39.13",
"@types/lodash": "^4.17.15",
"@types/pako": "^2.0.3",
"@types/serviceworker": "^0.0.118",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"electron": "^34.0.2",
"electron-builder": "^26.0.1",
"eslint": "^9.18.0",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"bootstrap": "^5.3.3",
"lodash": "^4.17.21",
"pako": "^2.1.0",
"tippy.js": "^6.3.7",
"uuid": "^11.0.5",
"webr": "^0.4.2"
},
"postinstall": "electron-builder install-app-deps"
}