-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "@fusionauth/cli",
"version": "1.2.3",
"description": "FusionAuth CLI",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node --no-warnings=ExperimentalWarning --loader ts-node/esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"fusionauth",
"oidc",
"oauth",
"themes"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FusionAuth/fusionauth-node-cli.git"
},
"author": "FusionAuth",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/FusionAuth/fusionauth-node-cli/issues"
},
"homepage": "https://github.com/FusionAuth/fusionauth-node-cli#readme",
"dependencies": {
"@commander-js/extra-typings": "11.0.0",
"@fusionauth/typescript-client": "1.47.0",
"chalk": "5.3.0",
"chokidar": "3.5.3",
"commander": "11.0.0",
"figlet": "1.6.0",
"fs-extra": "11.1.1",
"html-to-text": "9.0.5",
"log-symbols": "5.1.0",
"log-update": "5.0.1",
"merge": "2.1.1",
"queue": "7.0.0",
"remove-undefined-objects": "3.0.0",
"uuid": "9.0.0"
},
"devDependencies": {
"@types/figlet": "1.5.6",
"@types/fs-extra": "11.0.1",
"@types/html-to-text": "9.0.1",
"@types/node": "20.4.5",
"@types/uuid": "9.0.2",
"ts-node": "10.9.1",
"type-fest": "3.13.0",
"typescript": "5.1.6"
},
"bin": {
"fusionauth": "dist/index.js"
},
"type": "module"
}