-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "raindrop-wordpress-linkblog-sync",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"dev": "wrangler dev",
"test": "vitest",
"deploy": "wrangler deploy",
"types": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"prepare": "husky"
},
"keywords": [
"cloudflare-workers",
"raindrop",
"wordpress",
"sync",
"linkblog"
],
"author": "Rian van der Merwe",
"license": "MIT",
"description": "Cloudflare Worker that syncs Raindrop.io bookmarks to WordPress",
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.8.46",
"@cloudflare/workers-types": "^4.20250620.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^24.0.4",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-unicorn": "^59.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.1",
"typescript": "^5.8.3",
"vitest": "^3.2.4",
"wrangler": "^4.21.2"
},
"dependencies": {
"markdown-it": "^14.1.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings 50",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}