-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 977 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
{
"name": "create-nuxt3-directus",
"version": "1.0.0",
"description": "This projects is a CLI to generate a template project using Nuxt3 integrated with Directus SDK, providing a jwt authentication flow.",
"main": "dist/index.js",
"repository": "[email protected]:Guiqft/nuxt3-primevue-directus.git",
"author": "Guilherme Oliveira <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc && shx rm -rf dist/templates && shx cp -r templates dist"
},
"bin": "./dist/index.js",
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.7",
"@types/yargs": "^17.0.5",
"shx": "^0.3.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"ejs": "^3.1.6",
"inquirer": "^8.2.0",
"yargs": "^17.2.1"
}
}