forked from glasskube/glasskube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.24 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
57
58
59
60
{
"author": "Glasskube",
"license": "Apache-2.0",
"scripts": {
"postinstall": "npm run build",
"build": "node esbuild.mjs",
"prettier:check": "prettier -c web/ internal/**/*.html",
"prettier:write": "prettier -w web/ internal/**/*.html"
},
"dependencies": {
"@glasskube/theme": "0.1.1",
"bootstrap": "5.3.3",
"giscus": "^1.5.0",
"htmx.org": "1.9.12"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"esbuild": "0.21.5",
"prettier": "3.3.2",
"prettier-plugin-go-template": "0.0.15"
},
"prettier": {
"plugins": [
"prettier-plugin-go-template"
],
"bracketSameLine": true,
"bracketSpacing": false,
"singleQuote": true,
"semi": true,
"overrides": [
{
"files": "*.css",
"options": {
"singleQuote": false
}
},
{
"files": "*.html",
"options": {
"printWidth": 120,
"parser": "go-template"
}
}
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
2,
"always",
1000
]
},
"defaultIgnores": false
}
}