-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.47 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.47 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
{
"name": "eslint-import-context",
"version": "0.2.0",
"type": "commonjs",
"description": "Provide context info for eslint-plugin-import-x, so no extra arguments need to be added.",
"repository": "git+https://github.com/un-ts/eslint-import-context.git",
"author": "JounQin <admin@1stg.me> (https://www.1stG.me)",
"funding": "https://opencollective.com/eslint-import-context",
"license": "MIT",
"packageManager": "yarn@4.9.2",
"engines": {
"node": "^12.20.0 || ^14.18.0 || >=16.0.0"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"files": [
"lib",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -p src",
"clean": "premove .type-coverage coverage dist lib .eslintcache .stylelintcache",
"dev": "vitest",
"docs": "vite",
"docs:build": "vite build",
"format": "prettier --write .",
"lint": "run-p 'lint:*'",
"lint:es": "eslint . --cache --max-warnings 10",
"lint:style": "stylelint . --cache",
"lint:tsc": "tsc -p tsconfig.base.json --noEmit",
"prepare": "simple-git-hooks && yarn-berry-deduplicate || exit 0",
"release": "clean-pkg-json && changeset publish",
"serve": "vite preview",
"test": "vitest run",
"typecov": "type-coverage -p tsconfig.base.json",
"version": "changeset version && yarn --no-immutable"
},
"peerDependencies": {
"oxc-resolver": "^11.0.0"
},
"peerDependenciesMeta": {
"oxc-resolver": {
"optional": true
}
},
"dependencies": {
"get-tsconfig": "^4.10.1",
"stable-hash-x": "^0.2.0"
},
"devDependencies": {
"@1stg/browserslist-config": "^2.1.4",
"@1stg/common-config": "^14.3.0",
"@1stg/postcss-config": "^6.1.0",
"@1stg/stylelint-config": "^6.1.0",
"@changesets/changelog-github": "^0.5.1",
"@changesets/cli": "^2.29.6",
"@commitlint/cli": "^19.8.1",
"@eslint-react/eslint-plugin": "^1.52.6",
"@mdx-js/rollup": "^3.1.0",
"@shikijs/rehype": "^3.9.2",
"@types/mdx": "^2.0.13",
"@types/node": "^24.3.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@types/web": "^0.0.262",
"@vercel/analytics": "^1.5.0",
"@vitejs/plugin-react-swc": "^4.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.4",
"clean-pkg-json": "^1.3.0",
"eslint": "^9.33.0",
"eslint-import-context": "link:.",
"eslint-plugin-react-hooks": "^5.2.0",
"github-markdown-css": "^5.8.1",
"nano-staged": "^0.8.0",
"npm-run-all2": "^8.0.4",
"oxc-resolver": "^11.6.1",
"premove": "^4.0.0",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router-dom": "^7.8.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"simple-git-hooks": "^2.13.1",
"size-limit": "^11.2.0",
"size-limit-preset-node-lib": "^0.4.0",
"stylelint": "^16.23.1",
"type-coverage": "^2.29.7",
"type-fest": "^4.41.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4",
"yarn-berry-deduplicate": "^6.1.3"
},
"resolutions": {
"eslint-import-context": "link:.",
"prettier": "^3.6.1",
"vite": "npm:rolldown-vite@^7.0.1"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"detail": true,
"ignoreAsAssertion": true,
"ignoreNonNullAssertion": true,
"showRelativePath": true,
"strict": true,
"update": true
}
}