diff --git a/package.json b/package.json index 5e7a724..4fb26e6 100644 --- a/package.json +++ b/package.json @@ -6,10 +6,13 @@ "types": "dist/index.d.ts", "author": "@sapphire", "license": "MIT", - "private": false, "bin": { "sapphire": "./bin/run" }, + "imports": { + "#prompts": "./dist/prompts/index.js", + "#functions": "./dist/functions/index.js" + }, "scripts": { "lint": "eslint src --ext ts --fix", "format": "prettier --write src/**/*.ts", @@ -58,16 +61,11 @@ "ts-node": "^10.2.0", "typescript": "^4.4.2" }, - "repository": { - "type": "git", - "url": "git+https://github.com/sapphiredev/cli.git" - }, "files": [ "dist", "!dist/*.tsbuildinfo", - "/bin", - "/npm-shrinkwrap.json", - "/oclif.manifest.json" + "bin", + "oclif.manifest.json" ], "engines": { "node": ">=16.7.0", @@ -83,6 +81,10 @@ "sapphire", "discordjs" ], + "repository": { + "type": "git", + "url": "git+https://github.com/sapphiredev/cli.git" + }, "bugs": { "url": "https://github.com/sapphiredev/cli/issues" }, @@ -120,9 +122,5 @@ "plugins": [ "@oclif/plugin-help" ] - }, - "imports": { - "#prompts": "./dist/prompts/index.js", - "#functions": "./dist/functions/index.js" } }