-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.44 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
{
"name": "create-mori",
"version": "0.1.4",
"description": "Quickly create project templates to support the required repositories as much as possible",
"main": "./dist/index.js",
"bin": {
"create-mori": "./dist/index.js"
},
"files": [
"dist",
"templates"
],
"scripts": {
"test": "npm run build && npm link && create-mori",
"build": "rimraf -I ./dist && tsc",
"prepare": "husky"
},
"keywords": [
"mori",
"create-mori",
"mori-create",
"create-mori-project",
"create-project"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Mori-Young/create-mori.git"
},
"author": "Mori <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mori-Young/create-mori/issues"
},
"homepage": "https://github.com/Mori-Young/create-mori#readme",
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.7",
"@types/prompts": "^2.4.9",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"pnpm": {
"overrides": {}
},
"dependencies": {
"chalk": "^5.4.1",
"figlet": "^1.8.0",
"fs-extra": "^11.3.0",
"ora": "^8.1.1",
"prompts": "^2.4.2"
}
}