-
Notifications
You must be signed in to change notification settings - Fork 120
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "lynx-stack",
"version": "0.0.0",
"private": true,
"description": "",
"keywords": [],
"license": "Apache-2.0",
"type": "module",
"scripts": {
"build": "tsc --build",
"prepare": "husky && ts-patch install",
"test": "vitest"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,css,sass,scss,less,html,yml,yaml,rs,toml,md,json}": [
"eslint --cache --fix --no-warn-ignored --flag v10_config_lookup_from_file",
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true",
"dprint fmt --allow-no-files --"
],
"*.rs": [
"cargo fmt --"
],
"package.json": "sort-package-json"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.8",
"@codspeed/vitest-plugin": "^5.2.0",
"@eslint/js": "^9.39.3",
"@eslint/markdown": "^7.5.1",
"@microsoft/api-extractor": "catalog:",
"@rsbuild/core": "catalog:rsbuild",
"@rslib/core": "^0.19.6",
"@rspack/core": "catalog:rspack",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tsconfig/node22": "^22.0.5",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.10.13",
"@typescript/native-preview": "7.0.0-dev.20260212.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.6.9",
"@vitest/ui": "^3.2.4",
"dprint": "^0.51.1",
"eslint": "^9.39.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-headers": "^1.3.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-regexp": "^2.10.0",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"sort-package-json": "^3.6.1",
"ts-patch": "^3.3.0",
"turbo": "^2.8.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vitest": "^3.2.4"
},
"packageManager": "[email protected]+sha512.498e1fb4cca5aa06c1dcf2611e6fafc50972ffe7189998c409e90de74566444298ffe43e6cd2acdc775ba1aa7cc5e092a8b7054c811ba8c5770f84693d33d2dc",
"engines": {
"node": "^22 || ^24"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"rsbuild-plugin-tailwindcss>tailwindcss": "^3 || ^4"
}
}
}
}