UNPKG

4.27 kBJSONView Raw
1{
2 "name": "nx/workspace",
3 "version": "0.1",
4 "schematics": {
5 "move": {
6 "factory": "./src/generators/move/move#moveSchematic",
7 "schema": "./src/generators/move/schema.json",
8 "aliases": ["mv"],
9 "description": "Move an application or library to another folder."
10 },
11 "remove": {
12 "factory": "./src/generators/remove/remove#removeSchematic",
13 "schema": "./src/generators/remove/schema.json",
14 "aliases": ["rm"],
15 "description": "Remove an application or library."
16 },
17 "library": {
18 "factory": "./src/generators/library/library#librarySchematic",
19 "schema": "./src/generators/library/schema.json",
20 "aliases": ["lib"],
21 "x-type": "library",
22 "description": "Create a library.",
23 "x-deprecated": "Use @nrwl/js:lib instead. This will be removed in Nx v16"
24 },
25 "workspace-generator": {
26 "factory": "./src/generators/workspace-generator/workspace-generator",
27 "schema": "./src/generators/workspace-generator/schema.json",
28 "aliases": ["workspace-schematic"],
29 "description": "Generates a workspace generator."
30 },
31 "run-commands": {
32 "factory": "./src/generators/run-commands/run-commands#runCommandsSchematic",
33 "schema": "./src/generators/run-commands/schema.json",
34 "aliases": ["run-command", "target"],
35 "description": "Generates a target to run any command in the terminal."
36 },
37 "npm-package": {
38 "factory": "./src/generators/npm-package/npm-package#npmPackageSchematic",
39 "schema": "./src/generators/npm-package/schema.json",
40 "description": "Create a minimal NPM package.",
41 "x-type": "library"
42 }
43 },
44 "generators": {
45 "preset": {
46 "factory": "./src/generators/preset/preset#presetGenerator",
47 "schema": "./src/generators/preset/schema.json",
48 "description": "Create application in an empty workspace.",
49 "hidden": true
50 },
51 "move": {
52 "factory": "./src/generators/move/move#moveGenerator",
53 "schema": "./src/generators/move/schema.json",
54 "aliases": ["mv"],
55 "description": "Move an application or library to another folder."
56 },
57 "remove": {
58 "factory": "./src/generators/remove/remove#removeGenerator",
59 "schema": "./src/generators/remove/schema.json",
60 "aliases": ["rm"],
61 "description": "Remove an application or library."
62 },
63 "new": {
64 "factory": "./src/generators/new/new#newGenerator",
65 "schema": "./src/generators/new/schema.json",
66 "description": "Create a workspace.",
67 "hidden": true
68 },
69 "library": {
70 "factory": "./src/generators/library/library#libraryGenerator",
71 "schema": "./src/generators/library/schema.json",
72 "aliases": ["lib"],
73 "x-type": "library",
74 "description": "Create a library.",
75 "x-deprecated": "Use @nrwl/js:lib instead. This will be removed in Nx v16."
76 },
77 "workspace-generator": {
78 "factory": "./src/generators/workspace-generator/workspace-generator",
79 "schema": "./src/generators/workspace-generator/schema.json",
80 "aliases": ["workspace-schematic"],
81 "description": "Generates a workspace generator."
82 },
83 "run-commands": {
84 "factory": "./src/generators/run-commands/run-commands#runCommandsGenerator",
85 "schema": "./src/generators/run-commands/schema.json",
86 "aliases": ["run-command", "target"],
87 "description": "Generates a target to run any command in the terminal."
88 },
89 "fix-configuration": {
90 "factory": "./src/generators/convert-to-nx-project/convert-to-nx-project#convertToNxProjectGenerator",
91 "schema": "./src/generators/convert-to-nx-project/schema.json",
92 "aliases": ["convert-to-nx-project"],
93 "description": "Fixes projects configuration"
94 },
95 "npm-package": {
96 "factory": "./src/generators/npm-package/npm-package#npmPackageGenerator",
97 "schema": "./src/generators/npm-package/schema.json",
98 "description": "Create a minimal NPM package.",
99 "x-type": "library"
100 },
101 "ci-workflow": {
102 "factory": "./src/generators/ci-workflow/ci-workflow#ciWorkflowGenerator",
103 "schema": "./src/generators/ci-workflow/schema.json",
104 "description": "Generate a CI workflow."
105 }
106 }
107}