-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 951 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 951 Bytes
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
{
"name": "paintdotjs",
"version": "1.0.0",
"description": "paint.js is an open source general-purpose raster graphics editor program, developed with javascript.",
"main": "js/platform/desktop/main.js",
"scripts": {
"web": "webpack --config webpack.config.js",
"web-watch": "webpack --config webpack.config.js --watch",
"app": "electron .",
"dist": "electron-builder",
"gen-imports": "node ./scripts/generate_imports.js",
"pwa": "node ./scripts/generate_pwa.js",
"prepublish": "npm run web && npm run pwa"
},
"keywords": [
"paint",
"paint.js",
"paintdotjs",
"paintjs",
"paintdotnet",
"paint.net",
"paintnet"
],
"author": "LabyStudio",
"devDependencies": {
"electron": "29.0.1",
"electron-builder": "^24.12.0",
"webpack": "^5.74.0",
"webpack-cli": "^5.1.4",
"workbox-build": "^6.5.3"
},
"dependencies": {
"custom-electron-titlebar": "^4.2.8"
}
}