-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.58 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "electron-clippy",
"version": "0.1.2",
"description": "A simple clipboard manager build on Electron",
"license": "MIT",
"repository": "ramlmn/electron-clippy",
"author": {
"name": "Ram Lmn",
"email": "ramlmn@outlook.com",
"url": "https://ramlmn.github.io/"
},
"homepage": "https://github.com/ramlmn/electron-clippy#readme",
"main": "build/main/main.js",
"scripts": {
"lint": "xo && stylelint src/**/*.css",
"lint-fix": "xo --fix; stylelint --fix src/**/*.css",
"start": "electron .",
"watch": "webpack --watch",
"dev": "concurrently \"npm run watch\" \"npm run start\"",
"build": "cross-env NODE_ENV=production webpack && build"
},
"dependencies": {
"@ramlmn/view": "^1.0.0",
"auto-launch": "^5.0.5",
"global-dispatcher": "^1.0.0",
"hyperhtml": "^2.23.0",
"just-debounce-it": "^1.1.0"
},
"devDependencies": {
"clean-webpack-plugin": "^1.0.0",
"concurrently": "^4.1.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.0.2",
"cssnano": "^4.1.8",
"electron": "^4.0.0",
"electron-builder": "^20.38.4",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"stylelint": "^9.9.0",
"stylelint-config-xo-space": "^0.11.0",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"xo": "^0.23.0"
},
"build": {
"appId": "com.ramlmn.electron-clippy",
"productName": "Clippy",
"artifactName": "electron-clippy-${version}.${ext}",
"files": [
"build/**/*",
"node_modules"
],
"linux": {
"category": "Productivity",
"icon": "build/assets/icon/png",
"target": [
"AppImage",
"deb"
]
},
"win": {
"icon": "build/assets/icon/win/win.ico",
"target": [
"nsis",
"msi"
]
},
"nsis": {
"oneClick": false,
"license": "LICENSE",
"perMachine": true,
"deleteAppDataOnUninstall": true
}
},
"xo": {
"space": true,
"rules": {
"no-unused-expressions": [
2,
{
"allowTaggedTemplates": true
}
],
"import/no-unassigned-import": [
1,
{
"allow": [
"**/*.css"
]
}
]
},
"env": [
"node",
"browser"
],
"ignore": [
"app"
]
},
"stylelint": {
"extends": "stylelint-config-xo-space",
"rules": {
"declaration-colon-newline-after": null,
"selector-list-comma-newline-after": null,
"selector-type-no-unknown": null
}
}
}