-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.11 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.11 KB
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
{
"name": "@azurioh/create-fastify-app",
"version": "1.0.11",
"description": "Package to setup a fastify repository",
"main": "./dist/index.js",
"bin": {
"create-fastify-app": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js"
},
"keywords": [
"fastify",
"create-fastify-app",
"fastify-app",
"fastify-app-generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Azurioh/create-fastify-app.git"
},
"author": "Azurioh",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Azurioh/create-fastify-app/issues"
},
"homepage": "https://github.com/Azurioh/create-fastify-app#readme",
"files": [
"dist",
"templates"
],
"dependencies": {
"fs-extra": "^11.3.0",
"kleur": "^4.1.5",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/minimist": "^1.2.5",
"@types/node": "^24.0.3",
"@types/prompts": "^2.4.9",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}