-
-
Notifications
You must be signed in to change notification settings - Fork 668
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.28 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.28 KB
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
{
"name": "create-webpack-app",
"version": "2.1.0",
"description": "CLI for scaffolding webpack projects using default config, framework templates, loader or plugins templates",
"keywords": [
"webpack",
"cli",
"scaffolding",
"module",
"bundler",
"web",
"frameworks"
],
"homepage": "https://github.com/webpack/webpack-cli/tree/main/packages/create-webpack-app",
"bugs": "https://github.com/webpack/webpack-cli/issues",
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-cli.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/webpack"
},
"license": "MIT",
"type": "module",
"main": "./lib/index.js",
"bin": {
"create-webpack-app": "./bin/cli.js"
},
"files": [
"bin",
"lib",
"templates",
"!**/*__tests__",
"!**/*.d.ts"
],
"scripts": {
"build": "tsc --build",
"watch": "tsc --watch"
},
"dependencies": {
"@inquirer/expand": "^5.0.12",
"@inquirer/select": "^5.1.3",
"colorette": "^2.0.20",
"commander": "^14.0.3",
"cross-spawn": "^7.0.6",
"ejs": "^5.0.2",
"node-plop": "^0.32.0"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/ejs": "^3.1.5"
},
"engines": {
"node": ">=20.9.0"
}
}