This repository was archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "logseq-raindrop",
"private": true,
"version": "0.3.0",
"main": "dist/index.html",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write src/",
"check": "svelte-check --tsconfig ./tsconfig.json",
"unittest": "TZ=UTC vitest run --coverage",
"tsc": "tsc --noEmit",
"test": "pnpm run check && pnpm run tsc && pnpm run format && pnpm run unittest"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^2.0.3",
"@tsconfig/svelte": "^3.0.0",
"@types/mustache": "^4.2.2",
"@types/node": "^18.15.8",
"@vitest/coverage-c8": "^0.31.1",
"prettier": "2.8.7",
"rollup-plugin-node-builtins": "^2.1.2",
"svelte": "^3.57.0",
"svelte-check": "^3.1.4",
"svelte-preprocess": "^5.0.3",
"tslib": "^2.5.0",
"typescript": "^5.0.2",
"vite": "^4.2.3",
"vite-plugin-logseq": "^1.1.2",
"vitest": "^0.31.1"
},
"packageManager": "pnpm@7.30.3",
"dependencies": {
"@logseq/libs": "^0.0.15",
"date-fns": "^2.30.0",
"mustache": "^4.2.0",
"true-myth": "^6.2.0"
},
"logseq": {
"id": "logseq-raindrop",
"description": "Send URLs to Raindrop.",
"title": "Raindrop",
"icon": "./raindrop.png",
"author": "Phil Denhoff",
"repo": "phildenhoff/logseq-raindrop"
}
}