-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
106 lines (106 loc) · 4.07 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
{
"name": "cyd",
"private": true,
"version": "1.0.27",
"main": ".vite/build/main.js",
"description": "Automatically delete your data from tech platforms, except for what you want to keep",
"license": "proprietary",
"authors": "Lockdown Systems LLC",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make-local-linux": "./scripts/make-local-linux.sh",
"make-local-macos": "./scripts/make-local-macos.sh",
"make-dev-linux": "./scripts/make-dev-linux.sh",
"make-dev-macos": "./scripts/make-dev-macos.sh",
"make-dev-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/make-dev-windows.ps1",
"make-prod-linux": "./scripts/make-prod-linux.sh",
"make-prod-macos": "./scripts/make-prod-macos.sh",
"make-prod-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/make-prod-windows.ps1",
"publish-dev-macos": "./scripts/publish-dev-macos.sh",
"publish-dev-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/publish-dev-windows.ps1",
"publish-prod-macos": "./scripts/publish-prod-macos.sh",
"publish-prod-windows": "powershell -ExecutionPolicy Bypass -File ./scripts/publish-prod-windows.ps1",
"test": "npm rebuild && vitest run . && ./scripts/clean.sh",
"test:components": "cd src/renderer && cypress run --component",
"open-cypress": "cd src/renderer && cypress open",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"config-open": "./archive-static-sites/build.sh && cp ./config/open.json ./build/config.json",
"config-local": "./archive-static-sites/build.sh && cp ./config/local.json ./build/config.json",
"config-dev": "./archive-static-sites/build.sh && cp ./config/dev.json ./build/config.json",
"config-prod": "./archive-static-sites/build.sh && cp ./config/prod.json ./build/config.json"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.5.2",
"@rushstack/eslint-patch": "^1.10.3",
"@types/bootstrap": "^5.2.10",
"@types/cheerio": "^0.22.35",
"better-sqlite3": "^11.2.1",
"bootstrap": "^5.3.3",
"cheerio": "^1.0.0-rc.12",
"date-fns": "^4.1.0",
"electron-log": "^5.1.4",
"electron-squirrel-startup": "^1.0.1",
"extract-zip": "^2.0.1",
"glob": "^11.0.0",
"http-encoding": "^2.0.1",
"http-mitm-proxy": "^1.1.0",
"jsdom": "^24.1.1",
"marked": "^13.0.0",
"mhtml2html": "^3.0.0",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"unzipper": "^0.12.3",
"update-electron-app": "^3.0.0",
"vue": "^3.4.21"
},
"devDependencies": {
"@electron-forge/cli": "7.4.0",
"@electron-forge/maker-deb": "7.4.0",
"@electron-forge/maker-dmg": "7.4.0",
"@electron-forge/maker-rpm": "7.4.0",
"@electron-forge/maker-squirrel": "7.4.0",
"@electron-forge/maker-zip": "7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "7.4.0",
"@electron-forge/plugin-fuses": "7.4.0",
"@electron-forge/plugin-vite": "7.4.0",
"@electron-forge/publisher-s3": "7.4.0",
"@electron/fuses": "^1.8.0",
"@electron/notarize": "^2.4.0",
"@electron/osx-sign": "^1.3.1",
"@eslint/js": "^9.5.0",
"@types/archiver": "^6.0.2",
"@types/better-sqlite3": "^7.6.11",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.12.8",
"@types/node-fetch": "^2.6.11",
"@types/unzipper": "^0.10.10",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-typescript": "^13.0.0",
"archiver": "^7.0.1",
"cross-env": "^7.0.3",
"electron": "^31.1.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^9.26.0",
"ts-node": "^10.9.2",
"tsx": "^4.9.1",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.1",
"vite": "^5.3.1",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.0.6"
},
"optionalDependencies": {
"@cypress/vue": "^6.0.0",
"appdmg": "^0.6.6",
"cypress": "^13.11.0"
}
}