-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.34 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
{
"name": "raindrop-sync-chrome",
"version": "0.4.0",
"author": {
"name": "Yuchan Lee",
"url": "https://github.com/lasuillard",
"email": "lasuillard@gmail.com"
},
"homepage": "https://github.com/lasuillard/raindrop-sync-chrome",
"private": true,
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:watch": "vite build --watch",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "yarn run check -- --watch",
"test": "vitest --config vitest.config.ts --coverage --run",
"test:watch": "vitest --config vitest.config.ts --silent --coverage --watch --ui",
"e2e": "vitest --config vitest.config.e2e.ts --run",
"e2e:watch": "concurrently --raw --kill-others --kill-signal SIGKILL \"yarn run build:watch\" \"wait-on --delay 3000 --timeout 15000 dist/manifest.json && vitest --silent --config vitest.config.e2e.ts --watch --ui\""
},
"devDependencies": {
"@codecov/vite-plugin": "^1.2.0",
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@floating-ui/dom": "^1.5.3",
"@lasuillard/raindrop-client": "^0.5.3",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@testing-library/svelte": "^5.2.0",
"@tsconfig/svelte": "^5.0.2",
"@types/chrome": "^0.0.237",
"@types/sinon-chrome": "^2.2.15",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"autoprefixer": "^10.4.16",
"axios": "^1.7.4",
"axios-cache-interceptor": "^1.6.0",
"concurrently": "^9.0.1",
"crx": "^5.0.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-svelte": "^2.44.1",
"flowbite": "^2.5.1",
"flowbite-svelte": "^0.46.15",
"flowbite-svelte-icons": "^1.6.1",
"globals": "^15.9.0",
"jsdom": "^25.0.0",
"postcss": "^8.4.32",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"puppeteer": "^23.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon-chrome": "^3.0.1",
"svelte": "^4.2.19",
"svelte-check": "^4.0.4",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.3.6",
"tiny-glob": "^0.2.9",
"tslib": "^2.7.0",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.1",
"wait-on": "^8.0.0"
},
"type": "module"
}