-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.6 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
{
"name": "lwc-webpack-plugin",
"version": "3.1.0",
"author": "René Winkelmeyer @muenzpraeger",
"description": "Webpack Plugin for LWC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "BSD-3-Clause",
"scripts": {
"prepare": "yarn build",
"build": "tsc",
"watch": "tsc --watch",
"test": "mocha",
"test:coverage": "nyc mocha"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/plugin-syntax-decorators": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@lwc/module-resolver": "8.5.0",
"@types/node": "22.8.6",
"babel-loader": "^9.1.3",
"chai": "^5.1.0",
"lwc": "8.5.0",
"memfs": "^4.8.1",
"mocha": "^10.4.0",
"mocha-snap": "^5.0.0",
"nyc": "^17.0.0",
"sinon": "^19.0.2",
"typescript": "~5.6.2",
"webpack": "~5.96.1",
"webpack-merge": "^6.0.1"
},
"dependencies": {
"resolve": "^1.22.8"
},
"peerDependencies": {
"@lwc/module-resolver": ">= 2",
"lwc": ">= 2"
},
"keywords": [
"lwc",
"salesforce",
"web components",
"lightning",
"webpack"
],
"volta": {
"node": "22.3.0",
"yarn": "1.22.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salesforce/lwc-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/salesforce/lwc-webpack-plugin/issues"
},
"homepage": "https://github.com/salesforce/lwc-webpack-plugin#readme"
}