forked from glasskube/glasskube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.33 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
61
62
63
{
"name": "glasskube",
"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": "2.0.2",
"htmx-ext-sse": "2.2.2",
"htmx-ext-response-targets": "2.0.1"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"esbuild": "0.23.1",
"prettier": "3.3.3",
"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
}
}