-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.64 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "raindrop-sync-chrome",
"version": "0.7.2",
"private": true,
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/lasuillard-s/raindrop-sync-chrome.git"
},
"author": {
"name": "Yuchan Lee",
"url": "https://github.com/lasuillard",
"email": "lasuillard@gmail.com"
},
"homepage": "https://github.com/lasuillard-s/raindrop-sync-chrome",
"bugs": {
"url": "https://github.com/lasuillard-s/raindrop-sync-chrome/issues"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:watch": "vite build --watch",
"fmt": "prettier --write --list-different .",
"fmt:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest --run",
"test:watch": "vitest --watch --ui",
"e2e": "playwright test",
"e2e:watch": "playwright test --ui"
},
"type": "module",
"dependencies": {
"webextension-polyfill": "0.12.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24",
"onFail": "error"
},
"packageManager": {
"name": "yarn",
"version": ">=1,<2",
"onFail": "error"
}
},
"devDependencies": {
"@codecov/vite-plugin": "2.0.1",
"@crxjs/vite-plugin": "2.7.1",
"@eslint/eslintrc": "3.3.6",
"@eslint/js": "10.0.1",
"@faker-js/faker": "10.5.0",
"@floating-ui/dom": "1.8.0",
"@fontsource-variable/inter": "5.3.0",
"@lasuillard/raindrop-client": "0.8.3",
"@playwright/test": "1.62.0",
"@sveltejs/vite-plugin-svelte": "7.2.0",
"@tailwindcss/postcss": "4.3.3",
"@tailwindcss/vite": "4.3.3",
"@testing-library/svelte": "5.4.2",
"@testing-library/user-event": "14.6.1",
"@tsconfig/svelte": "5.0.8",
"@types/firefox-webext-browser": "143.0.0",
"@types/node": "25.9.5",
"@types/webextension-polyfill": "0.12.5",
"@vitest/coverage-v8": "4.1.10",
"@vitest/ui": "4.1.10",
"axios": "1.18.1",
"concurrently": "10.0.4",
"date-fns": "4.4.0",
"eslint": "10.8.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-jsdoc": "63.3.0",
"eslint-plugin-svelte": "3.22.0",
"flowbite": "4.0.2",
"flowbite-svelte": "1.33.1",
"flowbite-svelte-icons": "3.1.0",
"globals": "17.8.0",
"happy-dom": "20.11.1",
"postcss": "8.5.23",
"prettier": "3.9.6",
"prettier-plugin-svelte": "4.1.1",
"prettier-plugin-tailwindcss": "0.8.1",
"svelte": "5.56.8",
"svelte-check": "4.7.3",
"tailwind-merge": "3.6.0",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"typescript-eslint": "8.65.0",
"vite": "8.1.5",
"vite-plugin-zip-pack": "1.2.4",
"vitest": "4.1.10",
"zod": "4.4.3"
}
}