-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.56 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
{
"name": "@verful/tooling-configs",
"type": "module",
"version": "1.6.0",
"description": "ESLint config presets",
"author": "Arthur Emanuel <[email protected]>",
"license": "MIT",
"keywords": [
"eslint-config",
"flat"
],
"exports": {
"./prettier": "./dist/src/prettier/index.json",
"./tsconfigs/*": "./dist/src/tsconfigs/*.json",
"./eslint": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"build": "tsup --format esm,cjs --clean --dts",
"release": "pnpm build && release-it"
},
"dependencies": {
"@adonisjs/eslint-plugin": "^1.3.0",
"@eslint/eslintrc": "^3.1.0",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^6.19.1",
"@verful/tooling-configs": "^1.2.0",
"eslint-config-flat-gitignore": "^0.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-i": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-n": "^17.10.1",
"eslint-plugin-perfectionist": "^3.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-unicorn": "^55.0.0",
"jsonc-eslint-parser": "^2.4.0",
"local-pkg": "^0.5.0",
"prettier-plugin-tailwindcss": "^0.6.5",
"react": "^18.3.1"
},
"devDependencies": {
"@antfu/eslint-define-config": "1.23.0-2",
"@semantic-release/git": "^10.0.1",
"@types/eslint": "^9.6.0",
"@types/node": "^20.14.12",
"cpy": "^11.1.0",
"eslint": "^9.8.0",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.2.3",
"typescript": "^5.5.4"
},
"prettier": "./src/prettier/index.json",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}