chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,80 @@
|
||||
{
|
||||
"name": "@nx/plugin",
|
||||
"version": "0.0.1",
|
||||
"private": false,
|
||||
"description": "This plugin is used to create Nx plugins! It contains generators for generating common plugin features like generators, executors, migrations and more.",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nrwl/nx.git",
|
||||
"directory": "packages/plugin"
|
||||
},
|
||||
"keywords": [
|
||||
"Monorepo",
|
||||
"Nx",
|
||||
"CLI"
|
||||
],
|
||||
"main": "./dist/index.js",
|
||||
"type": "commonjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"files": [
|
||||
"dist",
|
||||
"!dist/tsconfig.tsbuildinfo",
|
||||
"migrations.json",
|
||||
"generators.json"
|
||||
],
|
||||
"author": "Nrwl",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/nrwl/nx/issues"
|
||||
},
|
||||
"homepage": "https://nx.dev",
|
||||
"generators": "./generators.json",
|
||||
"ng-update": {
|
||||
"requirements": {},
|
||||
"migrations": "./migrations.json",
|
||||
"supportsOptionalMigrations": true
|
||||
},
|
||||
"dependencies": {
|
||||
"tslib": "catalog:typescript",
|
||||
"@nx/devkit": "workspace:*",
|
||||
"@nx/jest": "workspace:*",
|
||||
"@nx/js": "workspace:*",
|
||||
"@nx/eslint": "workspace:*"
|
||||
},
|
||||
"devDependencies": {
|
||||
"nx": "workspace:*"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"typesVersions": {
|
||||
"*": {
|
||||
"generators": [
|
||||
"dist/generators.d.ts"
|
||||
],
|
||||
"testing": [
|
||||
"dist/testing.d.ts"
|
||||
]
|
||||
}
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"@nx/nx-source": "./index.ts",
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json",
|
||||
"./migrations.json": "./migrations.json",
|
||||
"./generators.json": "./generators.json",
|
||||
"./generators": {
|
||||
"@nx/nx-source": "./generators.ts",
|
||||
"types": "./dist/generators.d.ts",
|
||||
"default": "./dist/generators.js"
|
||||
},
|
||||
"./testing": {
|
||||
"@nx/nx-source": "./testing.ts",
|
||||
"types": "./dist/testing.d.ts",
|
||||
"default": "./dist/testing.js"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user