chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "@nx/docker",
|
||||
"description": "The Nx Plugin for Docker to aid in containerizing projects.",
|
||||
"version": "0.0.1",
|
||||
"type": "commonjs",
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/tsconfig.tsbuildinfo",
|
||||
"migrations.json",
|
||||
"executors.json",
|
||||
"generators.json"
|
||||
],
|
||||
"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": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
"generators": [
|
||||
"dist/generators.d.ts"
|
||||
],
|
||||
"release/version-utils": [
|
||||
"dist/src/release/version-utils.d.ts"
|
||||
],
|
||||
"src/*": [
|
||||
"dist/src/*.d.ts"
|
||||
],
|
||||
"src/*.js": [
|
||||
"dist/src/*.d.ts"
|
||||
]
|
||||
}
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"@nx/nx-source": "./index.ts",
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./generators": {
|
||||
"@nx/nx-source": "./generators.ts",
|
||||
"types": "./dist/generators.d.ts",
|
||||
"default": "./dist/generators.js"
|
||||
},
|
||||
"./release/version-utils": {
|
||||
"@nx/nx-source": "./src/release/version-utils.ts",
|
||||
"types": "./dist/src/release/version-utils.d.ts",
|
||||
"default": "./dist/src/release/version-utils.js"
|
||||
},
|
||||
"./package.json": "./package.json",
|
||||
"./generators.json": "./generators.json",
|
||||
"./executors.json": "./executors.json",
|
||||
"./migrations.json": "./migrations.json",
|
||||
"./src/*": {
|
||||
"@nx/nx-source": "./src/*.ts",
|
||||
"types": "./dist/src/*.d.ts",
|
||||
"default": "./dist/src/*.js"
|
||||
},
|
||||
"./src/*.js": {
|
||||
"@nx/nx-source": "./src/*.ts",
|
||||
"types": "./dist/src/*.d.ts",
|
||||
"default": "./dist/src/*.js"
|
||||
}
|
||||
},
|
||||
"nx-migrations": {
|
||||
"migrations": "./migrations.json",
|
||||
"supportsOptionalMigrations": true
|
||||
},
|
||||
"executors": "./executors.json",
|
||||
"generators": "./generators.json",
|
||||
"dependencies": {
|
||||
"@nx/devkit": "workspace:*",
|
||||
"enquirer": "catalog:",
|
||||
"tslib": "catalog:typescript"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nx": "workspace:*"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user