-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.91 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
{
"name": "@natoboram/lmgtfy",
"version": "0.0.2",
"description": "A \"Let Me Google That For You\" clone that's open source and doesn't track you when you share it.",
"keywords": [
"Google",
"LMGTFY"
],
"homepage": "https://github.com/NatoBoram/lmgtfy",
"bugs": {
"url": "https://github.com/NatoBoram/lmgtfy/issues"
},
"license": "AGPL-3.0-or-later",
"repository": "github:NatoBoram/lmgtfy",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --check . && eslint .",
"lint:fix": "eslint --fix . && pnpm run format --list-different",
"format": "prettier --write .",
"docker:build": "docker build --secret id=BUILD_BASE --tag lmgtfy .",
"docker:run": "docker run --publish 127.0.0.1:3000:3000 lmgtfy",
"docker:kill": "docker ps --format '{{.Image}} {{.ID}}' | grep lmgtfy | awk '{print $2}' | xargs docker kill"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@natoboram/heroicons.svelte": "^1.0.6",
"@playwright/test": "^1.47.2",
"@sveltejs/adapter-auto": "^3.2.5",
"@sveltejs/adapter-node": "^5.2.5",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.5.25",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.43.0",
"globals": "^15.11.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"tailwindcss": "^3.4.14",
"tslib": "^2.7.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.0",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"private": true,
"type": "module"
}