-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.27 KB
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
113
114
{
"name": "@gaia-react/lint",
"version": "1.9.0",
"description": "GAIA's opinionated lint configuration.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./prettier": {
"import": "./dist/prettier.js",
"types": "./dist/prettier.d.ts"
},
"./stylelint": {
"import": "./dist/stylelint.js",
"types": "./dist/stylelint.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup && tsc --emitDeclarationOnly",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings=0 src",
"test": "vitest run",
"prepublishOnly": "pnpm typecheck && pnpm lint && pnpm test && pnpm build",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"engines": {
"node": ">=22.19.0"
},
"packageManager": "pnpm@11.5.2+sha512.71c631e382066efc25625d5cf029075de07b61b37f6e27350fbd84b1bda5864c8c1967adc280776b45c30a715c0359a3be08fef42d5bb09e2b99029979692916",
"peerDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"stylelint": "^17.0.0",
"typescript": "^5.0.0 || ^6.0.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"stylelint": {
"optional": true
}
},
"dependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "4.7.2",
"@eslint/config-helpers": "0.6.0",
"@eslint/js": "9.39.4",
"@vitest/eslint-plugin": "1.6.20",
"eslint-config-airbnb-extended": "3.1.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-better-tailwindcss": "4.6.0",
"eslint-plugin-canonical": "5.1.3",
"eslint-plugin-check-file": "3.3.1",
"eslint-plugin-jest-dom": "5.5.0",
"eslint-plugin-no-relative-import-paths": "1.6.1",
"eslint-plugin-perfectionist": "5.9.1",
"eslint-plugin-playwright": "2.10.4",
"eslint-plugin-prefer-arrow-functions": "3.9.1",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-sonarjs": "4.1.0",
"eslint-plugin-storybook": "10.4.6",
"eslint-plugin-testing-library": "7.16.2",
"eslint-plugin-unicorn": "65.0.1",
"eslint-plugin-unused-imports": "4.4.1",
"eslint-plugin-you-dont-need-lodash-underscore": "6.14.0",
"prettier-plugin-tailwindcss": "0.8.0",
"stylelint-config-clean-order": "10.0.0",
"stylelint-config-standard": "40.0.0",
"stylelint-config-tailwindcss": "1.0.1",
"stylelint-order": "8.1.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.9.3",
"eslint": "^9.39.0",
"tsup": "^8.0.0",
"typescript": "^6.0.0",
"typescript-eslint": "^8.62.0",
"vitest": "^4.1.9"
},
"author": "Steven Sacks <stevensacks@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gaia-react/lint.git"
},
"homepage": "https://github.com/gaia-react/lint#readme",
"bugs": {
"url": "https://github.com/gaia-react/lint/issues"
},
"keywords": [
"gaia",
"gaia-react",
"eslint",
"eslint-config",
"flat-config",
"react",
"typescript",
"lint"
]
}