-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "swc-webpack-plugin",
"version": "0.0.0-development",
"description": "Minify bundle with swc in webpack",
"keywords": [
"swc",
"webpack",
"plugin",
"minify"
],
"engines": {
"node": ">=12"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:soulwu/swc-webpack-plugin.git",
"author": "soulwu <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"@swc/core": "^1.2.0",
"webpack": "^4.40.0 || ^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@dawnjs/eslint-config-dawn": "^3.0.0",
"@swc/core": "^1.2.57",
"@swc/jest": "^0.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.0",
"@types/webpack": "^5.28.0",
"@types/webpack-sources": "^2.1.0",
"@types/webpack4": "npm:@types/webpack@^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"commitlint-config-ali": "^0.1.3",
"eslint": "^7.26.0",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"memfs": "^3.2.2",
"prettier": "^2.3.0",
"regenerator-runtime": "^0.13.7",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.3",
"swc-loader": "^0.1.14",
"typescript": "^4.2.4",
"unionfs": "^4.4.0",
"webpack": "^5.37.0",
"webpack4": "npm:webpack@^4.0.0"
},
"dependencies": {
"type-fest": "^1.1.3",
"webpack-sources": "^2.2.0"
},
"scripts": {
"prepare": "husky install",
"build": "rimraf lib && tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest --coverage",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix"
}
}