This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
65 lines (65 loc) · 1.94 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
{
"name": "@nativephp/electron-plugin",
"version": "0.5.5",
"description": "NativePHP Electron support",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/simonhamp"
}
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "node node_modules/typescript/bin/tsc",
"build:watch": "npm run build -- -W",
"test": "jest --forceExit --verbose --detectOpenHandles --coverage"
},
"dependencies": {
"@electron-toolkit/utils": "^1.0.2",
"@electron/remote": "^2.0.9",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"axios": "^1.3.5",
"body-parser": "^1.20.2",
"electron-context-menu": "^3.6.1",
"electron-store": "^8.1.0",
"electron-updater": "^6.2.1",
"electron-window-state": "^5.0.3",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"get-port": "^5.1.1",
"menubar": "^9.4.0",
"ps-node": "^0.1.6",
"tree-kill": "^1.2.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
"@babel/plugin-transform-object-assign": "^7.16.7",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.21.5",
"@types/express": "^4.17.17",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.6",
"electron": "^25.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"prettier": "^2.8.1",
"stylelint": "^14.16.0",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}