-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.13 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
66
{
"name": "dotfiles",
"version": "1.0.0",
"description": "This repository contains my personal dotfiles, used to configure my development environment across machines.",
"keywords": [
"dotfiles"
],
"homepage": "https://github.com/cravingmaker/dotfiles#readme",
"bugs": {
"url": "https://github.com/cravingmaker/dotfiles/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cravingmaker/dotfiles.git"
},
"license": "MIT",
"author": "cravingmaker",
"type": "commonjs",
"scripts": {
"format": "prettier --write .",
"lint": "pnpm run lint:eslint && pnpm run lint:publint",
"lint:eslint": "eslint --fix \"src/**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}\"",
"lint:publint": "pnpm dlx publint",
"prepare": "husky"
},
"lint-staged": {
"package.json": "prettier --write",
"*.config.{js,cjs,mjs,ts,cts,mts,json*,yaml,yml,toml}": "prettier --write",
"src/**/*.html": "prettier --write",
"src/**/*.css": "prettier --write",
"src/**/*.{js,cjs,mjs,jsx,ts,cts,mts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.json*": "prettier --write",
"src/**/*.{yaml, yml}": "prettier --write",
"src/**/*.toml": "prettier --write",
"src/**/*.sh": "prettier --write"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.5"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@typescript-eslint/parser": "^8.18.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"prettier-plugin-sh": "^0.14.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.1"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}