-
-
Notifications
You must be signed in to change notification settings - Fork 106
/
package.json
85 lines (85 loc) · 1.97 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
82
83
84
85
{
"name": "esbuild-loader",
"version": "0.0.0-semantic-release",
"description": "⚡️ Speed up your Webpack build with esbuild",
"keywords": [
"esbuild",
"webpack",
"loader",
"typescript",
"esnext"
],
"license": "MIT",
"repository": "privatenumber/esbuild-loader",
"funding": "https://github.com/privatenumber/esbuild-loader?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"imports": {
"#esbuild-loader": {
"types": "./src/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.cjs"
}
},
"scripts": {
"build": "pkgroll --target=node16.19.0",
"test": "tsx --env-file=.env tests",
"dev": "tsx watch --env-file=.env --conditions=development tests",
"lint": "lintroll --cache .",
"type-check": "tsc --noEmit",
"prepack": "pnpm build && clean-pkg-json"
},
"peerDependencies": {
"webpack": "^4.40.0 || ^5.0.0"
},
"dependencies": {
"esbuild": "^0.21.0",
"get-tsconfig": "^4.7.0",
"loader-utils": "^2.0.4",
"webpack-sources": "^1.4.3"
},
"devDependencies": {
"@types/loader-utils": "^2.0.3",
"@types/mini-css-extract-plugin": "2.4.0",
"@types/node": "^18.13.0",
"@types/webpack": "^4.41.33",
"@types/webpack-sources": "^0.1.9",
"clean-pkg-json": "^1.2.0",
"css-loader": "^5.2.7",
"execa": "^8.0.1",
"fs-fixture": "^2.4.0",
"lintroll": "^1.6.1",
"manten": "^1.3.0",
"memfs": "^4.9.3",
"mini-css-extract-plugin": "^1.6.2",
"pkgroll": "^2.1.1",
"tsx": "^4.15.6",
"typescript": "^5.4.5",
"webpack": "^4.44.2",
"webpack-cli": "^4.10.0",
"webpack-merge": "^5.9.0",
"webpack-test-utils": "^2.1.0",
"webpack5": "npm:webpack@^5.0.0"
},
"pnpm": {
"overrides": {
"fsevents@1": "^2.0.0"
}
},
"packageManager": "[email protected]"
}