-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 916 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 916 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
29
30
31
{
"name": "ybdownloader",
"version": "0.0.0",
"private": true,
"description": "A fast, modern YouTube downloader and converter",
"scripts": {
"prepare": "husky",
"lint:go": "./scripts/lint-go.sh",
"lint:frontend": "cd frontend && npm run lint && npm run format:check",
"lint:extension": "cd browser-extension && npm run lint",
"lint": "npm run lint:go && npm run lint:frontend",
"test:go": "go test ./...",
"test:frontend": "cd frontend && npm run test",
"test": "npm run test:go && npm run test:frontend"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.7"
},
"lint-staged": {
"**/*.go": [
"./scripts/lint-staged-go.sh"
],
"frontend/src/**/*.{ts,tsx,json,css,scss}": [
"./scripts/lint-staged-frontend.sh"
],
"browser-extension/**/*.{ts,tsx,json,css}": [
"./scripts/lint-staged-extension.sh"
]
}
}