-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "Pixie",
"version": "1.0.0",
"description": "Pixie is a web based image editor",
"homepage": "https://github.com/mindinsomnia/pixie",
"main": "main.js",
"scripts": {
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"serve": "webpack serve --mode=development",
"electron": "electron ./dist/main.js",
"pack": "electron-builder"
},
"build": {
"appId": "com.grady-oneill.pixie",
"directories": {
"output": "packaged"
},
"files": [
{
"from": "dist",
"to": ".",
"filter": []
},
"package.json"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mindinsomnia/pixie.git"
},
"author": {
"name": "Grady O'Neill",
"email": "mindinsomnia@gmail.com",
"url": "http://grady-oneill.com"
},
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/mindinsomnia/pixie/issues"
},
"devDependencies": {
"@vue/compiler-sfc": "^3.2.31",
"babel-core": "^6.26.3",
"babel-loader": "^8.2.3",
"babel-preset-env": "^1.7.0",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.7.1",
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"vue": "^3.2.31",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"engines": {
"node": ">= 16.14.0",
"npm": ">= 8.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}