UNPKG

1.5 kBJSONView Raw
1{
2 "name": "esbuild-loader",
3 "version": "2.13.1",
4 "description": "⚡️ Speed up your Webpack build with esbuild",
5 "keywords": [
6 "esbuild",
7 "webpack",
8 "loader",
9 "typescript",
10 "esnext"
11 ],
12 "license": "MIT",
13 "repository": "privatenumber/esbuild-loader",
14 "funding": "https://github.com/privatenumber/esbuild-loader?sponsor=1",
15 "author": {
16 "name": "Hiroki Osame",
17 "email": "hiroki.osame@gmail.com"
18 },
19 "files": [
20 "dist"
21 ],
22 "main": "dist/index.js",
23 "scripts": {
24 "build": "tsc",
25 "test": "jest --coverage",
26 "lint": "eslint ."
27 },
28 "husky": {
29 "hooks": {
30 "pre-commit": "lint-staged"
31 }
32 },
33 "lint-staged": {
34 "*.ts": [
35 "eslint",
36 "jest --bail --findRelatedTests"
37 ]
38 },
39 "peerDependencies": {
40 "webpack": "^4.40.0 || ^5.0.0"
41 },
42 "dependencies": {
43 "esbuild": "^0.11.19",
44 "joycon": "^3.0.1",
45 "json5": "^2.2.0",
46 "loader-utils": "^2.0.0",
47 "tapable": "^2.2.0",
48 "type-fest": "^1.0.1",
49 "webpack-sources": "^2.2.0"
50 },
51 "devDependencies": {
52 "@pvtnbr/eslint-config-typescript": "^0.1.16",
53 "@types/jest": "^26.0.22",
54 "@types/loader-utils": "^2.0.2",
55 "@types/webpack": "^4.41.27",
56 "css-loader": "^5.2.0",
57 "eslint": "^7.26.0",
58 "husky": "^4.3.8",
59 "jest": "^26.6.3",
60 "lint-staged": "^10.5.4",
61 "memfs": "^3.2.0",
62 "mini-css-extract-plugin": "^1.4.0",
63 "typescript": "^4.2.3",
64 "unionfs": "^4.4.0",
65 "webpack": "^4.44.2",
66 "webpack5": "npm:webpack@^5.0.0"
67 },
68 "eslintConfig": {
69 "extends": "@pvtnbr/eslint-config-typescript"
70 }
71}