generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.42 KB
/
package.json
File metadata and controls
120 lines (120 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
{
"name": "dialog-creator",
"version": "1.1.3",
"description": "A dialog creating application",
"main": "dist/main.js",
"scripts": {
"build": "node scripts/sync-docs-fonts.js && tsc && npm run bundle:cm6",
"watch": "tsc -w",
"lint": "eslint -c .eslintrc --ext .ts ./src",
"start": "npm run build && node scripts/start.js",
"docs:pdf": "node scripts/manual/build-pdf.js",
"docs:html": "node scripts/sync-docs-fonts.js && node scripts/manual/build-html.js",
"bundle:cm6": "node scripts/bundle-cm6-if-needed.js",
"predist": "node scripts/check-env.js && node scripts/sync-docs-fonts.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": "Adrian Dusa",
"contributors": [
"RODA"
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/RODA/DialogCreator/issues"
},
"repository": "https://github.com/RODA/DialogCreator.git",
"homepage": "https://github.com/RODA/DialogCreator#readme",
"keywords": [
"Electron",
"Dialog Creator"
],
"build": {
"appId": "DialogCreator.tool",
"productName": "DialogCreator",
"directories": {
"output": "build/output",
"buildResources": "icons"
},
"extraResources": [
"LICENSE",
{
"from": "src/database/DialogCreator.sqlite",
"to": "DialogCreator.sqlite"
},
{
"from": "src/assets/",
"to": "assets"
},
{
"from": "docs/",
"to": "docs"
},
{
"from": "src/bundles/codemirror.bundle.js",
"to": "bundles/codemirror.bundle.js"
}
],
"win": {
"icon": "icons/icon.ico",
"legalTrademarks": "Academic Non-Commercial License (see LICENSE file for details).",
"target": {
"target": "nsis",
"arch": [
"x64"
]
}
},
"mac": {
"icon": "icons/icon.icns",
"category": "public.app-category.productivity",
"extendInfo": {
"NSHumanReadableCopyright": "© 2025 Adrian Dusa — Academic Non-Commercial License (see LICENSE file for details)."
},
"target": {
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
},
"publish": {
"provider": "github",
"owner": "RODA",
"repo": "DialogCreator"
}
},
"devDependencies": {
"@codemirror/autocomplete": "^6.20.0",
"@codemirror/commands": "^6.10.1",
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/language": "^6.12.1",
"@codemirror/lint": "^6.9.2",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.11",
"@types/emscripten": "^1.41.5",
"@types/sqlite3": "^3.1.11",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^26.4.1",
"esbuild": "^0.27.2",
"eslint": "^9.39.2",
"md-to-pdf": "^5.2.5",
"typescript": "^5.9.3"
},
"dependencies": {
"@jaames/iro": "^5.5.2",
"acorn": "^8.12.1",
"sortablejs": "^1.15.6",
"sqlite3": "^5.1.7",
"tippy.js": "^6.3.7",
"uuid": "^13.0.0"
}
}