forked from superduck-ai/superduck
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 784 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 784 Bytes
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
{
"name": "superduck-monorepo",
"private": true,
"description": "Root tooling for SuperDuck — installs git pre-commit hooks via husky + lint-staged across chrome-crx (TS) and chrome-native-host (Go). Declares Bun/npm workspaces so all JS sub-packages share a single lockfile.",
"workspaces": [
"chrome-crx",
"npm/packages/*"
],
"scripts": {
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
},
"lint-staged": {
"chrome-crx/src/**/*.{ts,tsx,js,json}": [
"bash scripts/lint-staged-prettier.sh"
],
"chrome-crx/src/**/*.{ts,tsx}": [
"bash scripts/lint-staged-eslint.sh"
],
"chrome-native-host/**/*.go": [
"gofmt -w",
"bash scripts/lint-staged-govet.sh"
]
}
}