-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.09 KB
/
package.json
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
{
"name": "ts-checker-rspack-plugin",
"version": "1.1.0",
"description": "Runs typescript type checker and linter on separate process.",
"keywords": [
"rspack",
"plugin",
"typescript",
"typecheck"
],
"bugs": {
"url": "https://github.com/rspack-contrib/ts-checker-rspack-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rspack-contrib/ts-checker-rspack-plugin.git"
},
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "cross-env rimraf lib && cross-env tsc --version && cross-env tsc",
"lint": "echo lint",
"test": "pnpm build && pnpm test:unit && pnpm test:e2e",
"test:unit": "cross-env jest --config=test/unit/jest.config.js",
"test:e2e": "cd test/e2e && pnpm test",
"test:e2e:setup": "cd test/e2e && pnpm run setup",
"precommit": "pnpm build && pnpm test:unit",
"prepare": "husky install && pnpm build",
"bump": "npx bumpp"
},
"dependencies": {
"@babel/code-frame": "^7.16.7",
"@rspack/lite-tapable": "^1.0.0",
"chokidar": "^3.5.3",
"memfs": "^4.14.0",
"minimatch": "^9.0.5",
"picocolors": "^1.1.1"
},
"peerDependencies": {
"@rspack/core": "^1.0.0",
"typescript": ">=3.8.0"
},
"peerDependenciesMeta": {
"@rspack/core": {
"optional": true
}
},
"devDependencies": {
"@jest/console": "^27.0.0",
"@rspack/core": "^1.1.3",
"@types/babel__code-frame": "^7.0.3",
"@types/jest": "^27.4.0",
"@types/mock-fs": "^4.13.1",
"@types/node": "^16.4.13",
"cross-env": "^7.0.3",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-circus": "^27.4.6",
"jest-environment-node": "^27.4.6",
"jest-runner": "^27.0.0",
"mock-fs": "^5.1.2",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"strip-ansi": "^6.0.0",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]"
}