-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.87 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.87 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": "ts-checker-rspack-plugin",
"version": "1.3.0",
"description": "Runs typescript type checker and linter on separate process.",
"keywords": [
"rspack",
"plugin",
"typescript",
"typecheck"
],
"bugs": {
"url": "https://github.com/rstackjs/ts-checker-rspack-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rstackjs/ts-checker-rspack-plugin.git"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rslib",
"bump": "npx bumpp",
"dev": "rslib -w",
"lint": "echo lint",
"precommit": "pnpm build && pnpm test:unit",
"prepare": "husky && pnpm build",
"test": "pnpm build && pnpm test:unit && pnpm test:e2e",
"test:e2e": "cd test/e2e && pnpm test",
"test:e2e:setup": "cd test/e2e && pnpm run setup",
"test:unit": "rstest --config=test/unit/rstest.config.ts"
},
"dependencies": {
"@rspack/lite-tapable": "^1.1.0",
"chokidar": "^3.6.0",
"memfs": "^4.57.2",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@babel/code-frame": "^7.29.0",
"@rslib/core": "^0.21.3",
"@rspack/core": "^1.7.11",
"@rstest/core": "^0.9.9",
"@types/babel__code-frame": "^7.27.0",
"@types/is-glob": "^4.0.4",
"@types/mock-fs": "^4.13.4",
"@types/node": "^24.12.2",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
"is-glob": "^4.0.3",
"minimatch": "^10.2.5",
"mock-fs": "^5.5.0",
"prettier": "^3.8.3",
"strip-ansi": "^7.2.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@rspack/core": "^1.0.0 || ^2.0.0-0",
"typescript": ">=3.8.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"packageManager": "pnpm@10.33.2",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}