mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.6 KiB
62 lines
1.6 KiB
{
|
|
"name": "@nx/docker",
|
|
"description": "The Nx Plugin for Docker to aid in containerizing projects.",
|
|
"version": "22.4.5",
|
|
"type": "commonjs",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nrwl/nx.git",
|
|
"directory": "packages/docker"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/nrwl/nx/issues"
|
|
},
|
|
"keywords": [
|
|
"Monorepo",
|
|
"Docker",
|
|
"Containers"
|
|
],
|
|
"author": "Victor Savkin",
|
|
"license": "MIT",
|
|
"homepage": "https://nx.dev",
|
|
"main": "index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"default": "./index.js"
|
|
},
|
|
"./release/version-utils": {
|
|
"types": "./src/release/version-utils.d.ts",
|
|
"default": "./src/release/version-utils.js"
|
|
},
|
|
"./generators": {
|
|
"types": "./generators.d.ts",
|
|
"default": "./generators.js"
|
|
},
|
|
"./executors/*/schema.json": "./src/executors/*/schema.json",
|
|
"./executors/*/schema": "./src/executors/*/schema.d.ts",
|
|
"./generators/*/schema.json": "./src/generators/*/schema.json",
|
|
"./generators/*/schema": "./src/generators/*/schema.d.ts",
|
|
"./package.json": "./package.json",
|
|
"./generators.json": "./generators.json",
|
|
"./executors.json": "./executors.json",
|
|
"./migrations.json": "./migrations.json"
|
|
},
|
|
"nx-migrations": {
|
|
"migrations": "./migrations.json"
|
|
},
|
|
"executors": "./executors.json",
|
|
"generators": "./generators.json",
|
|
"dependencies": {
|
|
"@nx/devkit": "22.4.5",
|
|
"enquirer": "~2.3.6",
|
|
"tslib": "^2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"nx": "22.4.5"
|
|
},
|
|
"types": "./src/index.d.ts"
|
|
}
|