UNPKG

async-neocities

Version:

A library and bin to deploy to neocities

67 lines (66 loc) 2 kB
{ "name": "async-neocities", "description": "A library and bin to deploy to neocities", "version": "4.1.2", "author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)", "type": "module", "bin": { "async-neocities": "./bin.js", "an": "./bin.js" }, "bugs": { "url": "https://github.com/bcomnes/async-neocities/issues" }, "engines": { "node": ">=20", "npm": ">=10" }, "dependencies": { "@lukeed/ms": "^2.0.2", "@types/combined-stream": "^1.0.6", "application-config": "^3.0.0", "argsclopts": "^1.0.4", "async-folder-walker": "^3.0.1", "form-data": "^4.0.0", "minimatch": "^10.0.0", "password-prompt": "1.1.3", "undici": "^7.0.0" }, "devDependencies": { "@voxpelli/tsconfig": "^15.0.0", "auto-changelog": "^2.2.0", "c8": "^10.0.0", "dotenv": "^16.4.5", "gh-release": "^7.0.0", "neostandard": "^0.12.0", "npm-run-all": "^4.1.5", "typescript": "~5.8.2" }, "homepage": "https://github.com/bcomnes/async-neocities", "keywords": [ "neocities", "async", "api client", "static hosting" ], "license": "MIT", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/bcomnes/async-neocities.git" }, "scripts": { "prepublishOnly": "npm run build && git push --follow-tags && gh-release -y", "postpublish": "npm run clean", "test": "run-s test:*", "test:lint": "eslint", "test:tsc": "tsc", "test:node": "c8 node --test", "version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md", "clean": "run-p clean:*", "clean:declarations-top": "rm -rf $(find . -maxdepth 1 -type f \\( -name '*.d.ts*' -o -name '*.cts*' \\))", "clean:declarations-lib": "rm -rf $(find lib -type f -name '*.d.ts*' ! -name '*-types.d.ts')", "build": "npm run clean && run-p build:*", "build:declaration": "tsc -p declaration.tsconfig.json" } }