-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.63 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
64
65
{
"name": "@stacksjs/biome-config",
"type": "module",
"version": "0.1.5",
"description": "A well-opinionated Biome config to get you started quickly, and efficiently.",
"author": "Chris Breuer <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/biome-config#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/biome-config.git"
},
"bugs": {
"url": "https://github.com/stacksjs/biome-config/issues"
},
"keywords": [
"biome",
"linter",
"formatter",
"prettier",
"eslint",
"typescript",
"css",
"javascript",
"bun",
"stacksjs"
],
"exports": {
".": "./schema.json",
"./schema.json": "./schema.json"
},
"files": ["schema.json"],
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --fix .",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"commit": "git cz",
"changelog": "bunx changelogen --output CHANGELOG.md",
"release": "bun run changelog && bunx bumpp package.json --all"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@commitlint/cli": "^19.5.0",
"@types/bun": "^1.1.10",
"bumpp": "^9.6.1",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"cz-git": "^1.10.0",
"lint-staged": "^15.2.10",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.2"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged",
"commit-msg": "bunx --no -- commitlint --edit $1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": "bunx biome --fix"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}