-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.37 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": "tsc6 --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": "^3.0.0",
"@codspeed/vitest-plugin": "^5.7.1",
"@eslint/js": "^9.39.5",
"@eslint/markdown": "^7.5.1",
"@microsoft/api-extractor": "catalog:",
"@rsbuild/core": "catalog:rsbuild",
"@rslib/core": "catalog:rslib",
"@rspack/core": "catalog:rspack",
"@rstest/core": "catalog:rstest",
"@rstest/coverage-istanbul": "catalog:rstest",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"@tsconfig/node24": "^24.0.4",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^24.13.3",
"@typescript/native": "npm:typescript@7.0.2",
"@typescript/typescript6": "6.0.2",
"@vitest/coverage-v8": "^3.2.7",
"@vitest/eslint-plugin": "^1.6.23",
"@vitest/ui": "^3.2.7",
"core-js": "^3.50.0",
"dprint": "^0.55.2",
"eslint": "^9.39.5",
"eslint-import-resolver-typescript": "^4.4.5",
"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.3",
"eslint-plugin-regexp": "^2.10.0",
"eslint-plugin-unicorn": "^61.0.2",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"pkg-pr-new": "0.0.87",
"semver": "^7.8.5",
"sort-package-json": "^3.7.1",
"ts-patch": "^4.0.1",
"turbo": "^2.10.8",
"typescript": "catalog:",
"typescript-eslint": "^8.64.0",
"vitest": "^3.2.7",
"yaml": "^2.9.0"
},
"packageManager": "pnpm@11.22.0+sha512.1ff870c4c6133dfd88fb2afc46dd13d47f09c9794b438c6fdb47ca98caf3bc16381ee0be93a091b8e3824cf01f889f46d7d9e20910fb0be1ab0fb5baa80dd621",
"engines": {
"node": "^22.11 || ^24"
}
}