-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.87 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.87 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
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
{
"name": "dedsec",
"productName": "DedSec",
"version": "0.1.0",
"description": "DedSec is an open source product by Mauricio Vuljevas for PC repair, diagnostics, resource optimization, safe cleanup, secure installer monitoring, and system maintenance. It includes a cross-platform desktop application and a public website for product showcase, documentation, and download links.",
"author": {
"name": "Mauricio Vuljevas",
"url": "https://www.mvuljevas.com"
},
"license": "MIT",
"homepage": "https://www.mvuljevas.com",
"repository": {
"type": "git",
"url": "https://github.com/mvuljevas/DedSec.git"
},
"bugs": {
"url": "https://github.com/mvuljevas/DedSec/issues"
},
"keywords": [
"dedsec",
"open-source",
"pc-repair",
"computer-repair",
"system-maintenance",
"pc-optimization",
"system-diagnostics",
"resource-optimization",
"secure-installer",
"installer-monitoring",
"safe-cleaner",
"repair-tools",
"product-showcase",
"landing-page",
"documentation",
"downloads",
"desktop-app",
"electron",
"nextjs",
"typescript",
"i18n",
"multilingual",
"windows",
"macos",
"linux"
],
"dedsec": {
"projectType": "open-source-pc-repair-and-optimization-tool",
"authorUri": "https://www.mvuljevas.com",
"repositoryUri": "https://github.com/mvuljevas/DedSec",
"productCategory": "PC repair, diagnostics, resource optimization, secure installer monitoring, safe cleanup, and system maintenance",
"surfaces": [
"desktop-application",
"product-showcase-website"
],
"desktopPurpose": [
"repair-tasks",
"maintenance-workflows",
"system-diagnostics",
"resource-optimization",
"safe-cleanup",
"secure-installer-monitoring",
"remnant-cleanup"
],
"webPurpose": [
"product-showcase",
"documentation",
"download-links"
],
"supportedDesktopPlatforms": [
"windows",
"macos",
"linux"
],
"defaultLocale": "es",
"fallbackLocale": "en"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build:packages && npm run build:apps",
"build:packages": "npm run build -w @dedsec/domain && npm run build -w @dedsec/i18n && npm run build -w @dedsec/ui",
"build:apps": "npm run build -w @dedsec/web && npm run build -w @dedsec/desktop",
"dev:web": "npm run dev -w @dedsec/web",
"dev:desktop": "npm run dev -w @dedsec/desktop",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present"
},
"engines": {
"node": ">=22"
},
"overrides": {
"next": {
"postcss": "8.5.15"
},
"postcss": "8.5.15"
},
"packageManager": "npm@11.7.0",
"devDependencies": {
"typescript": "^6.0.3"
}
}