create-awesome-node-app 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +3653 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3659 -0
- package/index.js +3 -0
- package/package.json +60 -0
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "create-awesome-node-app",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Command line tool to create Node apps with a lot of different addons.",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Create-Node-App/create-node-app.git"
|
|
10
|
+
},
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/Create-Node-App/create-node-app/issues"
|
|
13
|
+
},
|
|
14
|
+
"homepage": "https://github.com/Create-Node-App/create-node-app#readme",
|
|
15
|
+
"keywords": [
|
|
16
|
+
"code generator"
|
|
17
|
+
],
|
|
18
|
+
"authors": [
|
|
19
|
+
{
|
|
20
|
+
"name": "Ulises Jeremias Cornejo Fandos",
|
|
21
|
+
"email": "ulisescf.24@gmail.com"
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
"engines": {
|
|
25
|
+
"node": ">=18.0.0"
|
|
26
|
+
},
|
|
27
|
+
"main": "index.js",
|
|
28
|
+
"files": [
|
|
29
|
+
"index.js",
|
|
30
|
+
"dist/**"
|
|
31
|
+
],
|
|
32
|
+
"bin": {
|
|
33
|
+
"create-awesome-node-app": "index.js"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"registry": "https://registry.npmjs.org/",
|
|
38
|
+
"scope": "@create-node-app"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
42
|
+
"dev": "tsup src/index.ts --watch --format cjs,esm --dts",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"lint": "eslint .",
|
|
45
|
+
"lint:fix": "eslint . --fix"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@create-node-app/core": "*",
|
|
49
|
+
"prompts": "^2.4.1",
|
|
50
|
+
"yargs": "^17.0.1"
|
|
51
|
+
},
|
|
52
|
+
"devDependencies": {
|
|
53
|
+
"@create-node-app/eslint-config-ts": "*",
|
|
54
|
+
"@types/node": "^18.14.6",
|
|
55
|
+
"@types/prompts": "^2.4.2",
|
|
56
|
+
"@types/yargs": "^17.0.22",
|
|
57
|
+
"eslint": "^7.9.0",
|
|
58
|
+
"tsup": "^6.2.3"
|
|
59
|
+
}
|
|
60
|
+
}
|