-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.75 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
{
"name": "lanwatcher",
"productName": "LAN Watcher",
"version": "0.4.1",
"private": true,
"description": "Watching the devices in local area network",
"author": {
"name": "Glory Wong",
"email": "glorywong1001@gmail.com",
"url": "https://glorywong.com"
},
"license": "MIT",
"homepage": "https://github.com/Glory Wong/lan-devices-watcher#readme",
"repository": "github:Glory Wong/lan-devices-watcher",
"bugs": "https://github.com/Glory Wong/lan-devices-watcher/issues",
"keywords": [],
"main": "dist-electron/main.js",
"build": {
"appId": "com.glorywong.${name}",
"copyright": "Copyright © 2024 ${author}",
"asar": true,
"directories": {
"output": "release/${version}"
},
"files": [
".output/**/*",
"dist-electron"
],
"mac": {
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"icon": "assets/lanwatcher.icns"
},
"publish": {
"provider": "github",
"owner": "GloryWong",
"repo": "lanwatcher",
"releaseType": "release"
}
},
"engines": {
"node": ">=20.16.0"
},
"scripts": {
"dev": "nuxi dev",
"generate": "nuxi generate",
"preview": "nuxi preview",
"postinstall": "nuxi prepare && electron-builder install-app-deps",
"pack": "nuxi generate && electron-builder --dir",
"build": "nuxi generate && electron-builder",
"publish": "nuxi generate && electron-builder --publish=always",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"prepare": "pnpm simple-git-hooks",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@mdi/font": "^7.4.47",
"@vueuse/core": "^10.11.1",
"@vueuse/nuxt": "^10.11.1",
"country-emoji": "^1.5.6",
"electron-store": "^10.0.0",
"ip": "^2.0.1",
"oui-data": "^1.1.220",
"ping": "^0.4.4",
"vuetify": "^3.7.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nuxt/devtools": "^1.6.0",
"@types/ip": "^1.1.3",
"@types/ping": "^0.4.4",
"electron": "^31.7.3",
"electron-builder": "^24.13.3",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"nuxi": "^3.15.0",
"nuxt": "^3.14.159",
"nuxt-electron": "^0.7.0",
"sass": "^1.80.6",
"simple-git-hooks": "^2.11.1",
"type-fest": "^4.26.1",
"vite-plugin-electron": "^0.28.8",
"vite-plugin-electron-renderer": "^0.14.6",
"vuetify-nuxt-module": "^0.18.3"
},
"simple-git-hooks": {
"commit-msg": "pnpm commitlint --edit ${1}",
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.[js|ts]": "eslint --cache --fix",
"*": "pnpm lint:fix"
}
}