-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 3 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@xystack/style-guide",
"version": "0.2.5",
"description": "xinyao's style guide",
"type": "module",
"license": "MIT",
"homepage": "https://github.com/xinyao27/style-guide#readme",
"bugs": {
"url": "https://github.com/xinyao27/style-guide/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xinyao27/style-guide.git"
},
"files": [
"bin",
"eslint",
"package.json",
"prettier",
"typescript"
],
"exports": {
"./eslint": "./eslint/index.js",
"./prettier": "./prettier/prettier.config.js",
"./typescript": "./typescript/tsconfig.json"
},
"bin": "./bin/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"up": "bun update",
"prepare": "husky",
"eslint-check": "eslint --max-warnings=0 .",
"prettier-check": "prettier --check .",
"release": "bumpp && npm publish",
"test": "bun test"
},
"peerDependencies": {
"eslint": ">=8.48.0 <9",
"prettier": ">=3.0.0 <4",
"typescript": ">=4.8.0 <6"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"prettier": {
"optional": true
},
"typescript": {
"optional": true
}
},
"dependencies": {
"@antfu/ni": "^0.21.12",
"@clack/prompts": "^0.7.0",
"@eslint/js": "^9.15.0",
"@next/eslint-plugin-next": "^14.2.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"astro-eslint-parser": "^1.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-formatting-reporter": "^0.0.0",
"eslint-parser-plain": "^0.1.0",
"eslint-plugin-antfu": "^2.7.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import-x": "^0.5.3",
"eslint-plugin-jsonc": "^2.18.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-unicorn": "^53.0.0",
"eslint-plugin-unused-imports": "^3.2.0",
"eslint-plugin-vue": "^9.31.0",
"eslint-plugin-yml": "^1.15.0",
"fs-extra": "^11.2.0",
"globals": "^15.12.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.1",
"parse-gitignore": "^2.0.0",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.9",
"synckit": "^0.9.2",
"vue-eslint-parser": "^9.4.3",
"xycolors": "^0.1.2",
"yaml-eslint-parser": "^1.2.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@types/bun": "^1.1.13",
"@types/fs-extra": "^11.0.4",
"@types/react": "^18.3.12",
"bumpp": "^9.8.1",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18"
},
"lint-staged": {
"*": "prettier -w --ignore-unknown"
},
"prettier": "./prettier/prettier.config.js"
}