generated from xpenb/bun-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.01 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
{
"name": "@ydb-platform/ydb-slo-action",
"type": "module",
"workspaces": [
"init",
"report"
],
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky",
"bundle": "turbo run bundle",
"format": "turbo run format",
"lint": "turbo run lint"
},
"dependencies": {
"@actions/artifact": "^2.1.11",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"lint-staged": "^15.2.10",
"husky": "^9.1.7",
"oxlint": "^0.13.0",
"prettier": "^3.3.3"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"overrides": [
{
"files": [
"*.yml",
"*.yaml"
],
"options": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": false
}
}
]
}
}