-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
56 lines (56 loc) · 1.98 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
{
"name": "tab-manager-v2",
"private": true,
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"start": "pnpm --filter tab-manager-v2 start",
"release": "pnpm --filter tab-manager-v2 release",
"release-it": "release-it --ci",
"test": "turbo run test",
"test:lint": "pnpm lint",
"test:chrome-upload": "chrome-webstore-upload --help",
"test:firefox-upload": "web-ext --help",
"build": "turbo run build",
"deploy": "turbo run zip ls stat",
"publish:chrome": "chrome-webstore-upload upload --auto-publish --source packages/extension/build/build_chrome.zip",
"publish:firefox": "web-ext sign --source-dir packages/extension/build/build_firefox --channel=listed || echo 'Publish to Mozilla Add-ons may failed because https://github.com/mozilla/web-ext/issues/804'",
"publish:edge": "node ./publish_edge.mjs",
"publish-extension": "run-s publish:chrome publish:firefox publish:edge",
"zip": "pnpm --filter tab-manager-v2 zip",
"stat": "pnpm --filter tab-manager-v2 stat",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write",
"lintfix": "pnpm prettier '**/*.{js,ts,tsx,yml}' && pnpm lint --fix"
},
"devDependencies": {
"@plasmohq/edge-addons-api": "^2.0.0",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"chrome-webstore-upload-cli": "3.3.1",
"coveralls": "3.1.1",
"dotenv": "16.4.7",
"eslint": "9.18.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.10.0",
"eslint-plugin-typescript": "0.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"npm-run-all2": "7.0.2",
"prettier": "3.4.2",
"release-it": "18.1.1",
"turbo": "2.3.3",
"typescript": "5.7.3",
"web-ext": "8.3.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"pnpm prettier",
"eslint --fix"
],
"*.{json,css,md,md,mdx,html}": [
"pnpm prettier"
]
},
"packageManager": "pnpm@9.15.3"
}