generated from WezomCompany/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.19 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
{
"name": "@wezom/nextjs-fork-ts-checker-webpack-plugin",
"version": "0.1.1",
"description": "Wrapper over the ForkTsCheckerWebpackPlugin",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"prebuild": "del-cli lib",
"postbuild": "del-cli lib/**/__specs__",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"test-with-watch-mode": "vitest",
"test-with-coverage": "vitest run --coverage && istanbul-badges-readme && prettier \"./README.md\" --check --write",
"lint": "eslint \"./src/**/**.ts\" --cache --cache-location ./.cache/eslint/src",
"lint-with-autofix": "pnpm run lint --fix",
"format": "prettier \"./src/**/*.ts\" --write --check",
"local-pr-ready-check": "pnpm run format && pnpm run lint-with-autofix && pnpm run test-with-coverage && pnpm run build",
"ci-test": "pnpm run lint && pnpm run test"
},
"keywords": [],
"author": "OlehDutchenko <dutchenko.o.dev@gmail.com>",
"license": "BSD 3-Clause License",
"bugs": {
"url": "https://github.com/WezomCompany/nextjs-fork-ts-checker-webpack-plugin/issues"
},
"homepage": "https://github.com/WezomCompany/nextjs-fork-ts-checker-webpack-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/WezomCompany/nextjs-fork-ts-checker-webpack-plugin.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@vitest/coverage-istanbul": "^0.34.1",
"@wezom/eslint-config": "^11.0.5",
"@wezom/eslint-config-ts": "^11.0.5",
"del-cli": "^5.0.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"glob": "^10.3.3",
"istanbul-badges-readme": "^1.8.5",
"jsdom": "^22.1.0",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"dependencies": {
"fork-ts-checker-webpack-plugin": "^8.0.0"
}
}