-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "bookmarksync",
"description": "Synchronize browser bookmarks from a GitHub repository",
"private": true,
"version": "0.10.0",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "wxt",
"dev:firefox": "wxt -b firefox",
"build": "wxt build",
"build:firefox": "wxt build -b firefox",
"build:chrome": "wxt build -b chrome",
"zip": "wxt zip",
"zip:firefox": "wxt zip -b firefox",
"compile": "tsc --noEmit",
"lint": "concurrently \"npm:lint:*\"",
"lint-fix": "concurrently \"npm:lint:* -- --fix\"",
"lint:css": "stylelint src/**/*.css",
"lint:js": "xo",
"postinstall": "wxt prepare",
"prepare": "husky"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"xo": {
"envs": [
"browser",
"webextensions"
],
"rules": {
"unicorn/prefer-top-level-await": "off",
"n/file-extension-in-import": "off"
}
},
"stylelint": {
"rules": {
"function-whitespace-after": null,
"media-feature-range-operator-space-after": null,
"media-feature-range-operator-space-before": null
}
},
"devDependencies": {
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"concurrently": "^8.2.2",
"cz-conventional-changelog": "3.3.0",
"husky": "^9.0.11",
"stylelint": "^15.11.0",
"typescript": "^5.4.5",
"wxt": "^0.17.12",
"xo": "^0.58.0"
},
"dependencies": {
"@hyperjump/json-schema": "^1.8.0",
"@hyperjump/browser": "^1.1.3",
"@octokit/plugin-retry": "^7.1.0",
"@octokit/rest": "^20.1.0",
"@webext-core/job-scheduler": "^1.0.0",
"@webext-core/proxy-service": "^1.2.0",
"webext-base-css": "^1.4.4",
"webext-options-sync": "^4.2.1"
}
}