-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
44 lines (44 loc) · 1.07 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
{
"name": "@nxrocks/nx-quarkus",
"description": "Nx Plugin to generate, run, package, build (and more) Quarkus projects inside your Nx workspace",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "src/index.js",
"generators": "./generators.json",
"executors": "./executors.json",
"license": "MIT",
"author": "Tine Kondo ",
"repository": {
"type": "git",
"url": "https://github.com/tinesoft/nxrocks.git",
"directory": "packages/nx-quarkus"
},
"homepage": "https://github.com/tinesoft/nxrocks/blob/master/packages/nx-quarkus#readme",
"bugs": {
"url": "https://github.com/tinesoft/nxrocks/issues"
},
"keywords": [
"nx-plugin",
"quarkus",
"nx-workspace",
"spring",
"nx",
"java",
"native"
],
"dependencies": {
"@nxrocks/common-jvm": "file:../common-jvm",
"node-fetch": "^2.6.12",
"enquirer": "^2.4.1",
"tslib": "^2.6.1"
},
"typings": "./src/index.d.ts",
"peerDependencies": {
"@nx/devkit": ">=18.0.0"
},
"nx-migrations": {
"migrations": "./migrations.json"
}
}