forked from Automattic/gutenberg-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.71 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "gutenberg-desktop",
"version": "1.5.0",
"description": "Desktop Gutenberg without WordPress",
"homepage": "https://github.com/Automattic/gutenberg-desktop",
"repository": {
"url": "https://github.com/Automattic/gutenberg-desktop"
},
"main": "app/index.js",
"scripts": {
"start": "electron ./app/index.js",
"start-editor": "NODE_ENV=development webpack --mode development --watch --progress --config ./webpack.config.js ",
"build-editor": "NODE_ENV=production webpack --mode production --progress --config ./webpack.config.js",
"devstart": "NODE_ENV=development electron ./app/index.js",
"pack": "electron-builder --dir",
"dist": "electron-builder -ml",
"pub": "electron-builder -ml --publish onTagOrDraft",
"postinstall": "electron-builder install-app-deps"
},
"author": "Automattic",
"license": "GPL-2.0-or-later",
"dependencies": {
"@automattic/isolated-block-editor": "^2.16.0",
"@wordpress/blocks": "^11.11.0",
"@wordpress/data": "^6.12.0",
"electron": "19.0.6",
"electron-context-menu": "^3.3.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"path": "^0.12.7",
"path-browserify": "^1.0.1",
"turndown": "^7.1.1"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-react": "^7.18.6",
"@emotion/babel-plugin": "^11.9.2",
"@types/eslint": "^8.4.3",
"@types/lodash": "^4.14.182",
"@types/qs": "^6.9.7",
"@types/react-dom": "^18.0.5",
"@wordpress/babel-preset-default": "^6.14.0",
"@wordpress/dependency-extraction-webpack-plugin": "^3.6.0",
"@wordpress/prettier-config": "^1.4.0",
"@wordpress/scripts": "^23.4.0",
"autoprefixer": "^10.4.7",
"babel-loader": "^8.2.5",
"babel-plugin-emotion": "^11.0.0",
"babel-plugin-inline-json-import": "^0.3.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"electron-builder": "^23.1.0",
"electron-updater": "^5.0.5",
"eslint": "^8.18.0",
"eslint-config-wpcalypso": "^6.1.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-wpcalypso": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.1",
"node-polyfill-webpack-plugin": "^2.0.0",
"node-sass": "^7.0.1",
"postcss": "^8.4.14",
"postcss-cssnext": "^3.1.1",
"postcss-loader": "^7.0.0",
"precss": "^4.0.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"build": {
"directories": {
"app": "app"
},
"appId": "com.automattic.gutenberg-desktop",
"productName": "Gutenberg Desktop",
"mac": {
"category": "public.app-category.developer-tools",
"publish": [
"github"
]
},
"linux": {
"publish": [
"github"
]
},
"asar": true,
"extraResources": [
"app/preload.js"
]
}
}