UNPKG

create-octokit-project

Version:

`npm init` script to create a new Octokit JS module (plugin, authentication strategy, or otherwise)

44 lines (43 loc) 1.18 kB
{ "name": "create-octokit-project", "version": "5.0.0", "description": "`npm init` script to create a new Octokit JS module (plugin, authentication strategy, or otherwise)", "main": "index.js", "type": "module", "bin": { "create-octokit-project": "bin/create-octokit-project.js" }, "repository": "github:octokit/create-octokit-project.js", "keywords": [ "npm-init" ], "author": "Gregor Martynus (https://twitter.com/gr2m)", "license": "MIT", "scripts": { "lint": "prettier --check 'lib/*.js' index.js bin/create-octokit-project.js README.md package.json", "lint:fix": "prettier --write 'lib/*.js' index.js bin/create-octokit-project.js README.md package.json", "test": "node index.js", "posttest": "npm run lint" }, "dependencies": { "@octokit/auth-oauth-device": "^7.0.1", "@octokit/core": "^6.0.1", "camelcase": "^8.0.0", "clipboardy": "^4.0.0", "execa": "^9.0.0", "inquirer": "^12.0.0", "prettier": "^3.0.0", "spdx-license-list": "^6.3.0" }, "release": { "branches": [ "main" ] }, "engines": { "node": ">= 20" }, "publishConfig": { "provenance": true } }