-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
68 lines (68 loc) · 1.43 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
{
"name": "create-mpl",
"version": "0.1.7",
"description": "⚡️ Create a project in seconds!",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"author": "lencx <cxin1314@gmail.com>",
"license": "MIT",
"scripts": {
"mpl": "esno src/index.ts",
"dev": "npm run build -- --watch",
"build": "tsup --dts --minify --format cjs,esm",
"prepublishOnly": "npm run build",
"release": "npx bumpp --push --tag --commit && npm publish"
},
"files": [
"dist",
"bin"
],
"bin": {
"mpl": "bin/mpl.js"
},
"keywords": [
"scaffold",
"template",
"app",
"mpl",
"remix",
"vite",
"tauri",
"vue",
"react",
"umi",
"miniprogram",
"extension",
"wasm",
"rsw"
],
"repository": {
"type": "git",
"url": "https://github.com/lencx/create-mpl"
},
"bugs": {
"url": "https://github.com/lencx/create-mpl/issues"
},
"homepage": "https://github.com/lencx/create-mpl/tree/main#readme",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/minimist": "^1.2.2",
"@types/node": "^16.11.6",
"@types/prompts": "^2.0.14",
"esno": "^0.12.1",
"fast-glob": "^3.2.7",
"tsup": "^5.10.1",
"typescript": "^4.5.2"
},
"dependencies": {
"chalk": "^4.1.2",
"dgh": "^0.2.2",
"fs-extra": "^10.0.0",
"minimist": "^1.2.5",
"prompts": "^2.4.2"
},
"engines": {
"node": ">=12.2.0"
}
}