-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 2.73 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
{
"name": "SiteOne-Crawler",
"version": "1.0.8",
"description": "SiteOne Crawler is a very useful and versatile tool that performs an in-depth crawl and analysis of the entire website, looks for errors, recommends improvements, creates a complete offline version of your website or sitemap. It also has a lot of other uses, check out https://crawler.siteone.io/introduction/key-features/.",
"main": "./out/main/index.js",
"homepage": "https://crawler.siteone.io/",
"scripts": {
"format": "prettier --plugin prettier-plugin-svelte --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"svelte-check": "svelte-check --tsconfig ./tsconfig.json",
"typecheck": "npm run typecheck:node && npm run svelte-check",
"start": "electron-vite preview",
"dev": "cross-env NODE_ENV=development electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win-x64": "npm run build && electron-builder --win --x64 --config",
"build:mac-x64": "npm run build && electron-builder --mac --x64 --config",
"build:mac-arm64": "npm run build && electron-builder --mac --arm64 --config",
"build:linux-x64": "npm run build && electron-builder --linux --x64 --config",
"build:linux-arm64": "npm run build && electron-builder --linux --arm64 --config"
},
"dependencies": {
"@electron-toolkit/preload": "^2.0.0",
"@electron-toolkit/utils": "^2.0.0",
"ansi-to-html": "^0.7.2",
"daisyui": "^4.4.6",
"electron-updater": "^6.1.1",
"svelte-tiny-linked-charts": "^1.4.2",
"ws": "^8.14.2",
"xterm": "^5.3.0",
"xterm-addon-canvas": "^0.5.0",
"xterm-addon-fit": "^0.8.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^1.0.1",
"@electron-toolkit/eslint-config-ts": "^1.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"@types/node": "^18.17.5",
"autoprefixer": "^10.4.16",
"cross-env": "^7.0.3",
"electron": "^27.1.0",
"electron-builder": "^24.6.3",
"electron-vite": "^1.0.27",
"eslint": "^8.47.0",
"eslint-plugin-svelte": "^2.32.4",
"postcss": "^8.4.31",
"prettier": "^3.0.2",
"prettier-plugin-svelte": "^3.0.3",
"svelte": "^4.2.0",
"svelte-check": "^3.5.0",
"tailwindcss": "^3.3.5",
"tslib": "^2.6.2",
"typescript": "^5.1.6",
"vite": "^4.4.9"
},
"license": "MIT",
"author": {
"name": "Ján Regeš",
"email": "[email protected]",
"url": "https://www.siteone.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/janreges/siteone-crawler-gui.git"
}
}