-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
188 lines (188 loc) · 7.04 KB
/
package.json
File metadata and controls
188 lines (188 loc) · 7.04 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
{
"name": "spread",
"type": "module",
"version": "1.0.0",
"description": "Crie visualizações elegantes de links com customização completa",
"author": "mafhper",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mafhper/spread.git"
},
"homepage": "https://mafhper.github.io/spread/",
"keywords": [
"link-preview",
"card-generator",
"open-graph",
"music-card",
"astro",
"tailwindcss"
],
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"astro": "astro",
"prepare": "husky",
"dev": "astro dev",
"dev:safe": "run-s quality:full dev",
"preview": "node quality-core/scripts/run-preview.cjs",
"preview:serve": "astro preview",
"build": "astro build",
"build:analyze": "cross-env ANALYZE=true astro build",
"build:prod": "run-s build build:prod:checks",
"build:prod:checks": "run-p lint type-check format:check test:core quality:core:quick-silent",
"test": "vitest run",
"test:core": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:unit": "vitest run --testNamePattern=unit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"security:audit:root": "node quality-core/scripts/run-audit.cjs --tool=npm --output=audit-root.json",
"security:audit:dashboard": "node quality-core/scripts/run-audit.cjs --tool=npm --cwd=quality-core/dashboard --output=audit-dashboard.json",
"security:audit": "run-s security:audit:root security:audit:dashboard",
"security:update:root": "bun install",
"security:update:dashboard": "npm --prefix quality-core/dashboard update",
"security:update": "run-s security:update:root security:update:dashboard",
"preflight:github": "node quality-core/scripts/run-preflight.cjs --with-coverage",
"preflight:clean": "node quality-core/scripts/run-preflight-clean.cjs",
"quality:core": "node quality-core/cli/quality.cjs",
"quality:core:quick": "node quality-core/cli/quality.cjs --quick",
"quality:core:silent": "node quality-core/cli/quality.cjs --silent",
"quality:core:quick-silent": "node quality-core/cli/quality.cjs --quick --silent",
"quality:lighthouse": "node quality-core/cli/run-lighthouse.cjs",
"quality:lighthouse:silent": "node quality-core/cli/run-lighthouse.cjs --silent",
"quality:snapshot": "bun quality-core/generate-snapshot.ts",
"quality:dashboard": "bun quality-core/dashboard-server.ts",
"quality:gate": "node quality-core/cli/run.cjs",
"quality:gate:quick": "node quality-core/cli/run.cjs --quick",
"quality:gate:silent": "node quality-core/cli/run.cjs --silent",
"quality:gate:quick-silent": "node quality-core/cli/run.cjs --quick --silent",
"analysis": "node quality-core/cli/run-analysis.cjs",
"analysis:bundle": "node quality-core/cli/run-analysis.cjs",
"analysis:silent": "node quality-core/cli/run-analysis.cjs --silent",
"quality:check": "node quality-core/scripts/run-preflight.cjs",
"clean:dist": "rimraf dist",
"quality:full": "run-s clean:dist quality:full:parallel",
"quality:full:parallel": "run-p lint type-check format:check test:core quality:core",
"quality:full:silent": "run-s clean:dist quality:full:silent:parallel",
"quality:full:silent:parallel": "run-p lint type-check format:check test:core quality:core:silent",
"quality:full:quick": "run-s clean:dist quality:full:quick:parallel",
"quality:full:quick:parallel": "run-p lint type-check format:check test:core quality:core:quick",
"quality:full:quick-silent": "run-s clean:dist quality:full:quick-silent:parallel",
"quality:full:quick-silent:parallel": "run-p lint type-check format:check test:core quality:core:quick-silent",
"quality:reports:all": "run-s quality:core quality:lighthouse quality:snapshot analysis",
"quality:reports:all:silent": "run-s quality:core:silent quality:lighthouse:silent analysis:silent quality:snapshot",
"quality:dashboard:refresh": "bun quality-core/scripts/refresh-dashboard-cache.ts",
"quality:ci": "run-s quality:full quality:reports:all",
"quality:ci:quick-silent": "run-s build quality:gate:quick-silent quality:core:quick-silent quality:lighthouse:silent analysis:silent"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.2",
"astro": "^5.18.1",
"clsx": "^2.1.1",
"colorthief": "^2.7.0",
"downloadjs": "^1.4.7",
"html-to-image": "^1.11.13",
"lucide-react": "^0.562.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"tailwind-merge": "^3.5.0",
"web-vitals": "^5.2.0",
"zustand": "^5.0.12"
},
"resolutions": {
"@isaacs/brace-expansion": "5.0.1",
"picomatch": "4.0.4",
"tmp": "0.2.5",
"glob": "^11.0.0",
"flatted": "^3.4.2",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"path-to-regexp": "0.1.13",
"h3": "^1.15.8",
"js-yaml": "^4.1.1",
"yaml": "^2.8.3",
"@remix-run/router": "^1.23.1",
"esbuild": "0.25.0",
"rollup": "4.59.0",
"basic-ftp": "5.2.2",
"vite": "6.4.2"
},
"overrides": {
"@isaacs/brace-expansion": "5.0.1",
"picomatch": "4.0.4",
"anymatch": {
"picomatch": "2.3.2"
},
"micromatch": {
"picomatch": "2.3.2"
},
"tmp": "0.2.5",
"glob": "^11.0.0",
"flatted": "^3.4.2",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"path-to-regexp": "0.1.13",
"h3": "^1.15.8",
"js-yaml": "^4.1.1",
"yaml": "^2.8.3",
"@remix-run/router": "^1.23.1",
"esbuild": "0.25.0",
"rollup": "4.59.0",
"basic-ftp": "5.2.2",
"vite": "6.4.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@lhci/cli": "^0.15.1",
"@playwright/test": "^1.59.1",
"@tailwindcss/vite": "^4.2.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-istanbul": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"cross-env": "^7.0.3",
"eslint": "^9.39.4",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-astro": "^1.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-security": "^3.0.1",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lighthouse": "^12.8.2",
"lint-staged": "^16.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.2.2",
"typescript-eslint": "^8.58.1",
"vitest": "^4.1.4"
}
}