-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.75 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.75 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
{
"name": "@grandlinex/e-kernel",
"version": "1.2.0",
"description": "GrandLineX Electron Kernel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"buildprep": "tsc",
"test-run": "npm run buildprep && electron-forge start",
"test-build": "npm run buildprep && electron-forge package ",
"rebuild": "electron-rebuild",
"lint": "eslint src",
"makeDocs": "typedoc",
"buildPack": "tsc && npm pack"
},
"keywords": [
"typescript",
"framework",
"electron",
"server",
"backend"
],
"author": {
"name": "Elschnagoo"
},
"license": "BSD-3-Clause",
"dependencies": {
"@electron/rebuild": "4.0.1",
"@grandlinex/core": "1.2.0",
"electron": "38.6.0",
"node-abi": "4.17.0"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "res/img/favicon.png",
"ignore": [
".idea",
"scripts",
"certs"
]
}
}
},
"devDependencies": {
"@electron-forge/cli": "7.10.2",
"@types/node": "22.15.3",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cross-env": "7.0.3",
"electron": "38.6.0",
"electron-devtools-installer": "4.0.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"prettier": "3.3.3",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"typedoc": "0.28.14",
"typescript": "5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/GrandlineX/e-kernel.git"
},
"engines": {
"node": ">=22.12.0"
}
}