-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "webext-core",
"packageManager": "bun@1.1.33",
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"build": "buildc all",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@aklinker1/buildc": "^1.1.4",
"@aklinker1/generate-changelog": "*",
"@algolia/client-search": "^4.17.0",
"@types/prettier": "^2.7.2",
"@types/webextension-polyfill": "^0.9.1",
"@vitest/browser": "^2.1.1",
"@vitest/coverage-v8": "^2.1.1",
"@webext-core/fake-browser": "workspace:*",
"chokidar": "^3.5.3",
"linkedom": "^0.14.26",
"lint-staged": "^15.2.9",
"listr2": "^6.4.2",
"playwright": "^1.47.0",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"ts-morph": "^23.0.0",
"tsup": "^6.4.0",
"tsx": "^4.17.0",
"turbo": "^1.6.3",
"typescript": "^5.5.4",
"vitest": "^2.1.1",
"webextension-polyfill": "^0.10.0"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}