-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
48 lines (48 loc) · 968 Bytes
/
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
{
"name": "create-monkey",
"version": "1.39.0",
"description": "create-monkey",
"main": "index.js",
"type": "module",
"bin": {
"create-monkey": "index.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=14.18.0"
},
"files": [
"index.js",
"dist",
"template-*"
],
"scripts": {
"prebuild": "tsc",
"build": "tsup"
},
"keywords": [
"create",
"vite"
],
"author": "lisonge",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lisonge/vite-plugin-monkey.git",
"directory": "packages/create-monkey"
},
"bugs": {
"url": "https://github.com/lisonge/vite-plugin-monkey/issues"
},
"homepage": "https://github.com/lisonge/vite-plugin-monkey#readme",
"dependencies": {
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"volta": {
"extends": "../../package.json"
}
}