-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 1.91 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
{
"name": "swc-minify-webpack-plugin",
"version": "2.1.3",
"description": "A faster minimizer for webpack based on swc.minify()",
"keywords": [
"webpack",
"plugin",
"minify",
"uglify",
"optimization",
"bundle",
"build",
"compile",
"swc",
"node"
],
"homepage": "https://github.com/guoyunhe/swc-minify-webpack-plugin#readme",
"bugs": {
"url": "https://github.com/guoyunhe/swc-minify-webpack-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guoyunhe/swc-minify-webpack-plugin.git"
},
"funding": "https://github.com/sponsors/guoyunhe",
"license": "Apache-2.0",
"author": {
"name": "Guo Yunhe",
"email": "[email protected]",
"url": "https://guoyunhe.me/"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"typings": "dist/index.d.ts",
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node-scripts build",
"format": "node-scripts format",
"lint": "node-scripts lint",
"test": "node-scripts test",
"watch": "node-scripts watch",
"example:build": "cd example && webpack",
"example:serve": "serve example/dist"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"eslintConfig": {
"extends": "@guoyunhe/node-scripts"
},
"jest": {
"preset": "@guoyunhe/node-scripts"
},
"devDependencies": {
"@guoyunhe/node-scripts": "^2.2.0",
"@swc/core": "^1.4.11",
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/webpack": "^5.28.5",
"html-webpack-plugin": "^5.6.0",
"serve": "^14.2.1",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.10",
"three.js": "^0.77.1",
"typescript": "^5.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"@swc/core": "^1.0.0",
"webpack": "^5.0.0"
}
}