-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.79 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
{
"name": "@rsbuild/plugin-type-check",
"version": "1.4.0",
"repository": "https://github.com/rstackjs/rsbuild-plugin-type-check",
"homepage": "https://github.com/rstackjs/rsbuild-plugin-type-check#readme",
"bugs": {
"url": "https://github.com/rstackjs/rsbuild-plugin-type-check/issues"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rslib",
"bump": "npx bumpp",
"dev": "rslib -w",
"lint": "rslint && prettier -c .",
"lint:write": "rslint --fix && prettier -w .",
"prepare": "simple-git-hooks",
"test": "playwright test"
},
"simple-git-hooks": {
"pre-commit": "pnpm run lint:write"
},
"dependencies": {
"deepmerge": "^4.3.1",
"json5": "^2.2.3",
"reduce-configs": "^1.1.2",
"ts-checker-rspack-plugin": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@rsbuild/core": "^2.0.9",
"@rslib/core": "^0.22.0",
"@rslint/core": "^0.6.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^24.12.4",
"@typescript/native-preview": "7.0.0-dev.20260607.1",
"fs-extra": "^11.3.5",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@rsbuild/core": "^1.0.0 || ^2.0.0-0",
"@typescript/native-preview": "^7.0.0-0"
},
"peerDependenciesMeta": {
"@rsbuild/core": {
"optional": true
},
"@typescript/native-preview": {
"optional": true
}
},
"packageManager": "pnpm@11.5.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}