-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.46 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.46 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
{
"name": "kaiware",
"version": "0.1.0",
"description": "A desktop application that lets you remotely debug apps on your KaiOS device.",
"main": "./out/main/index.js",
"author": {
"name": "Garrett Downs",
"url": "https://nothingspecial.io"
},
"homepage": "https://github.com/nothingspecialdev/kaiware",
"repository": {
"type": "git",
"url": "https://github.com/nothingspecialdev/kaiware"
},
"type": "module",
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --check --write .",
"lint:all": "npm run lint && npm run typecheck && npm run svelte-check",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.svelte",
"lint:fix": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts,.svelte --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": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@cliqz-oss/firefox-client": "^0.3.1",
"@electron-toolkit/preload": "^3.0.0",
"@electron-toolkit/utils": "^3.0.0",
"@nothing-special/kaiware-lib": "^0.11.0",
"dayjs": "^1.11.10",
"express": "^4.19.2",
"express-ws": "^5.0.2",
"highlight.js": "^11.9.0",
"knex": "^3.1.0",
"prettier": "^3.2.5",
"sqlite3": "5.1.6",
"svelte-spa-router": "^4.0.1",
"ws": "^8.16.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@iconify-json/ion": "^1.1.17",
"@iconify-json/mdi": "^1.1.65",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@swc/core": "^1.4.11",
"@tsconfig/svelte": "^5.0.4",
"@types/express": "^4.17.21",
"@types/express-ws": "^3.0.4",
"@types/node": "^18.19.9",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"electron": "^29.1.6",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-plugin-svelte": "^2.35.1",
"prettier-plugin-svelte": "^3.2.2",
"svelte": "^4.2.9",
"svelte-check": "^3.6.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unplugin-icons": "^0.18.5",
"vite": "^5.0.12"
}
}