-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove default exports (#121)
- Loading branch information
Showing
13 changed files
with
213 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
{ | ||
"name": "nodecg-cli", | ||
"version": "8.7.0", | ||
"license": "MIT", | ||
"_id": "[email protected]", | ||
"maintainers": [ | ||
{ "name": "mattmcnam", "email": "[email protected]" }, | ||
{ "name": "hoishin", "email": "[email protected]" } | ||
], | ||
"contributors": [ | ||
{ | ||
"url": "https://alexvan.camp/", | ||
"name": "Alex Van Camp", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"url": "http://mattmcn.com/", | ||
"name": "Matthew McNamara", | ||
"email": "[email protected]" | ||
}, | ||
{ "name": "Keiichiro Amemiya", "email": "[email protected]" } | ||
], | ||
"homepage": "https://github.com/nodecg/nodecg-cli#readme", | ||
"bugs": { "url": "http://github.com/nodecg/nodecg-cli/issues" }, | ||
"bin": { "nodecg": "dist/bin/nodecg.js" }, | ||
"dist": { | ||
"shasum": "bd59db2d98c2077bc03623cb9be59ff45fb511a2", | ||
"tarball": "https://registry.npmjs.org/nodecg-cli/-/nodecg-cli-8.7.0.tgz", | ||
"fileCount": 28, | ||
"integrity": "sha512-RcoE8PhtivBz1dtKDmgBh3MTozckwymcPr9UC1oiagYMlDLoTvLC1Bqssef5h+rNNK/aBeVB33leySFEQWNbjQ==", | ||
"signatures": [ | ||
{ | ||
"sig": "MEUCIQDuXO/x48us+Bt7A9SskHcLDaAmDFhEDCgbMcTfolZHUQIgNLF0GtmhOF5COKdZue+HwYIRAeO8KbScnZeE/U6PQe4=", | ||
"keyid": "SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA" | ||
} | ||
], | ||
"unpackedSize": 155193 | ||
}, | ||
"type": "module", | ||
"engines": { "node": "^18.17.0 || ^20.9.0 || ^22.11.0" }, | ||
"gitHead": "15d3992ec6d6eeb874d9c20473a63435689acbc9", | ||
"scripts": { | ||
"dev": "tsc --build tsconfig.build.json --watch", | ||
"fix": "run-s fix:*", | ||
"test": "vitest", | ||
"build": "del-cli dist && tsc --build tsconfig.build.json", | ||
"format": "prettier --write \"**/*.ts\"", | ||
"static": "run-s static:*", | ||
"fix:eslint": "eslint --fix", | ||
"fix:prettier": "prettier --write \"**/*.ts\"", | ||
"static:eslint": "eslint --cache", | ||
"static:prettier": "prettier --check \"**/*.ts\"" | ||
}, | ||
"_npmUser": { "name": "hoishin", "email": "[email protected]" }, | ||
"prettier": {}, | ||
"repository": { | ||
"url": "git://github.com/nodecg/nodecg-cli.git", | ||
"type": "git" | ||
}, | ||
"_npmVersion": "10.9.0", | ||
"description": "The NodeCG command line interface.", | ||
"directories": {}, | ||
"_nodeVersion": "22.12.0", | ||
"dependencies": { | ||
"tar": "^7.4.3", | ||
"chalk": "^5.4.1", | ||
"semver": "^7.6.3", | ||
"inquirer": "^12.3.0", | ||
"commander": "^12.1.0", | ||
"hosted-git-info": "^8.0.2", | ||
"npm-package-arg": "^12.0.1", | ||
"json-schema-defaults": "0.4.0", | ||
"json-schema-to-typescript": "^15.0.3" | ||
}, | ||
"_hasShrinkwrap": false, | ||
"devDependencies": { | ||
"eslint": "^9.17.0", | ||
"vitest": "^2.1.8", | ||
"del-cli": "^6.0.0", | ||
"prettier": "^3.4.2", | ||
"type-fest": "^4.31.0", | ||
"@eslint/js": "^9.17.0", | ||
"typescript": "~5.7.2", | ||
"@types/node": "18", | ||
"npm-run-all2": "^7.0.2", | ||
"@types/semver": "^7.5.8", | ||
"typescript-eslint": "^8.18.2", | ||
"@vitest/coverage-v8": "^2.1.8", | ||
"@types/hosted-git-info": "^3.0.5", | ||
"@types/npm-package-arg": "^6.1.4", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-simple-import-sort": "^12.1.1" | ||
}, | ||
"_npmOperationalInternal": { | ||
"tmp": "tmp/nodecg-cli_8.7.0_1735252303987_0.756945223884677", | ||
"host": "s3://npm-registry-packages-npm-production" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import npmRelease from "./npm-release.json" with { type: "json" }; | ||
|
||
export type NpmRelease = typeof npmRelease; |
Oops, something went wrong.