-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
101 lines (101 loc) · 3.03 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
{
"name": "notpad",
"version": "1.0.0-5",
"type": "module",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Muhammed Rahif",
"email": "[email protected]",
"url": "https://muhammed-rahif.github.io"
},
"homepage": "https://github.com/Muhammed-Rahif/Notpad",
"bugs": {
"url": "https://github.com/Muhammed-Rahif/Notpad/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Muhammed-Rahif/Notpad.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/Muhammed-Rahif"
},
"scripts": {
"dev": "vite --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"predeploy": "pnpm run build",
"deploy": "gh-pages -d www -m 'chore(gh-pages): updates' --nojekyll",
"lint": "prettier --check . && eslint . && npx tsc --noEmit --project tsconfig.check.json",
"format": "prettier --write .",
"tauri": "tauri"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@sveltejs/vite-plugin-svelte": "^5.0.1",
"@tauri-apps/cli": "^2.1.0",
"@tsconfig/svelte": "^5.0.4",
"@types/eslint": "^9.6.1",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^22.10.1",
"@types/textarea-caret": "^3.0.3",
"@types/wicg-file-system-access": "^2023.10.5",
"@vite-pwa/assets-generator": "^0.2.6",
"autoprefixer": "^10.4.20",
"bits-ui": "1.0.0-next.72",
"clsx": "^2.1.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"gh-pages": "^6.2.0",
"globals": "^15.13.0",
"prettier": "^3.4.1",
"prettier-plugin-svelte": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"replace-in-file": "^8.2.0",
"semantic-release": "^24.2.0",
"svelte": "^5.3.0",
"svelte-check": "^4.1.0",
"svelte-radix": "^2.0.1",
"tailwind-merge": "^2.5.5",
"tailwind-variants": "^0.3.0",
"tailwindcss": "^3.4.15",
"tailwindcss-animate": "^1.0.7",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.1",
"vite-plugin-pwa": "^0.21.1",
"workbox-window": "^7.3.0"
},
"overrides": {
"sharp": "0.32.6",
"sharp-ico": "0.1.5"
},
"dependencies": {
"@neodrag/svelte": "^2.2.0",
"@svelte-put/shortcut": "^4.0.0",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.0.1",
"@tauri-apps/plugin-fs": "^2.0.2",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.1",
"caret-pos": "^2.0.0",
"dayjs": "^1.11.13",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.merge": "^4.6.2",
"lodash.throttle": "^4.1.1",
"print-js": "^1.6.0",
"quill": "^2.0.3",
"screenfull": "^6.0.2",
"short-uuid": "^5.2.0",
"svelte-sonner": "^0.3.28",
"tailwind-scrollbar": "^3.1.0"
}
}