-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.45 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
{
"name": "quickjots",
"version": "2.0.1",
"type": "module",
"main": "src/app.html",
"author": {
"name": "Shubham Jain",
"url": "https://sjain.dev"
},
"license": "MIT",
"description": "An offline-ready web-app to jot down and auto-save quick notes in your browser. No registration, with dark mode.",
"repository": "https://github.com/shu8/quickjots",
"homepage": "https://quickjots.app",
"scripts": {
"dev": "vite dev --host 0.0.0.0",
"build": "vite build && ./patch-service-worker.sh",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint src",
"format": "prettier --write src"
},
"private": false,
"devDependencies": {
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.43.5",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vite-pwa/sveltekit": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-svelte": "^2.46.1",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^4.2.20",
"svelte-check": "^3.8.6",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"vite": "^5.4.20",
"workbox-build": "^7.3.0",
"workbox-window": "^7.3.0"
},
"packageManager": "pnpm@10.17.1"
}