-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.01 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
{
"name": "@hideoo/create-app",
"description": "CLI utility to bootstrap a new project by creating a new app from scratch or update an existing app.",
"homepage": "https://github.com/HiDeoo/create-app",
"author": "HiDeoo <github@hideoo.dev> (https://hideoo.dev)",
"license": "MIT",
"version": "3.0.0",
"bin": "./cli.mjs",
"type": "module",
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"lint": "prettier -c --cache . && eslint . --cache --max-warnings=0 && tsc --noEmit",
"prepare": "husky install",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"comment-json": "4.2.3",
"kolorist": "1.8.0",
"lodash.merge": "4.6.2",
"open": "9.1.0",
"ora": "7.0.1",
"prompts": "2.4.2",
"sort-object-keys": "1.1.3",
"sort-package-json": "2.5.1",
"tiny-glob": "0.2.9",
"undici": "5.23.0",
"validate-npm-package-name": "5.0.0"
},
"devDependencies": {
"@hideoo/eslint-config": "3.0.0",
"@hideoo/prettier-config": "2.0.0",
"@hideoo/tsconfig": "2.0.1",
"@types/common-tags": "1.8.1",
"@types/lodash.merge": "4.6.7",
"@types/node": "18.17.12",
"@types/prompts": "2.4.4",
"@types/sort-object-keys": "1.1.0",
"@types/validate-npm-package-name": "4.0.0",
"eslint": "8.57.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"type-fest": "4.3.1",
"typescript": "5.2.2",
"unbuild": "2.0.0",
"vitest": "0.34.3"
},
"packageManager": "pnpm@8.15.0",
"files": [
"cli.mjs",
"dist",
"templates",
"templates/.gitignore"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"create",
"app",
"bootstrap",
"scaffold",
"automatic",
"configuration"
],
"bugs": "https://github.com/HiDeoo/create-app/issues",
"repository": {
"url": "https://github.com/HiDeoo/create-app.git",
"type": "git"
},
"prettier": "@hideoo/prettier-config"
}