-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1 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
{
"name": "hb-mod-theme-search",
"repository": {
"type": "git",
"url": "git+https://github.com/hbstack/theme-search.git"
},
"author": "Razon Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hbstack/theme-search/issues"
},
"homepage": "https://github.com/hbstack/theme-search",
"devDependencies": {
"@hugomods/prettier-config": "^0.1.0",
"@tsconfig/recommended": "^1.0.2",
"stylelint": "^16.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-scss": "^6.0.0",
"ts-standard": "^12.0.2",
"typescript": "^5.6.3"
},
"scripts": {
"lint": "npm run lint:prettier && npm run lint:style",
"lint:prettier": "prettier **/*.html --check",
"lint:prettier:fix": "prettier **/*.html -w",
"lint:standard": "ts-standard .",
"lint:standard:fix": "ts-standard --fix .",
"lint:style": "stylelint \"**/*.scss\"",
"lint:style:fix": "stylelint \"**/*.scss\" --fix"
},
"prettier": "@hugomods/prettier-config"
}