-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.08 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.08 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
{
"name": "marksyncr",
"version": "0.8.25",
"private": true,
"description": "Cross-browser bookmark sync extension with cloud storage",
"type": "module",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test": "turbo test",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"clean": "turbo clean && rm -rf node_modules",
"precommit": "pnpm lint && pnpm build",
"version:bump": "tsx scripts/bump-version.ts",
"setup:hooks": "git config core.hooksPath .githooks && git config push.followTags true && echo 'Git hooks and push.followTags configured'",
"postinstall": "git config core.hooksPath .githooks && git config push.followTags true 2>/dev/null || true"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.17.0",
"globals": "^17.0.0",
"prettier": "^3.4.2",
"tsx": "^4.21.0",
"turbo": "^2.3.3"
},
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@supabase/supabase-js": "^2.47.10",
"dotenv": "^17.3.1"
}
}