-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
{
"name": "uni",
"description": "Simple Disk Usage Analyzer based on Electron",
"version": "0.1.1",
"author": {
"name": "fiahfy",
"email": "[email protected]",
"url": "https://fiahfy.github.io/"
},
"dependencies": {
"@fiahfy/electron-accelerator-formatter": "^0.0.4",
"@fiahfy/electron-context-menu": "^0.0.6",
"@fiahfy/simple-clone": "^0.0.4",
"@nuxtjs/composition-api": "^0.12.0",
"d3": "^5.16.0",
"debounce": "^1.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-window-state": "^5.0.3",
"nuxt": "^2.14.1",
"pretty-bytes": "^5.3.0",
"typeface-roboto": "^0.0.75",
"vuex-module-decorators": "^0.17.0",
"vuex-persistedstate": "^3.1.0"
},
"devDependencies": {
"@fiahfy/eslint-config-nuxt": "^0.0.7",
"@fiahfy/icns-convert": "^0.0.8",
"@fiahfy/ico-convert": "^0.0.7",
"@mdi/font": "^5.5.55",
"@nuxt/types": "^2.14.1",
"@nuxt/typescript-build": "^2.0.2",
"@nuxtjs/vuetify": "^1.11.2",
"@types/d3": "^5.7.2",
"@types/debounce": "^1.2.0",
"@types/node": "^12.12.47",
"cross-env": "^7.0.2",
"electron": "^8.3.3",
"electron-builder": "^22.8.0",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"sass": "^1.26.10",
"sass-loader": "^8.0.2",
"vuetify-loader": "^1.6.0",
"worker-loader": "^3.0.1"
},
"keywords": [
"electron",
"nuxt",
"vue",
"vuetify"
],
"main": "main.js",
"private": true,
"productName": "Uni",
"repository": {
"type": "git",
"url": "https://github.com/fiahfy/uni"
},
"scripts": {
"build": "nuxt generate",
"dev": "cross-env NODE_ENV=development run-p serve electron",
"electron": "electron main.js",
"lint": "eslint -f codeframe --ext .js,.ts,.vue --ignore-path .gitignore .",
"release": "electron-builder",
"resources": "run-p resources:*",
"resources:icns": "icns-convert build/icon.png",
"resources:ico": "ico-convert build/icon.png",
"serve": "nuxt",
"test": "run-s lint"
}
}