mirror of
https://github.com/bcomnes/deploy-to-neocities.git
synced 2026-01-16 22:56:28 +00:00
Bumps [async-neocities](https://github.com/bcomnes/async-neocities) from 4.0.3 to 4.0.4. - [Release notes](https://github.com/bcomnes/async-neocities/releases) - [Changelog](https://github.com/bcomnes/async-neocities/blob/master/CHANGELOG.md) - [Commits](https://github.com/bcomnes/async-neocities/compare/v4.0.3...v4.0.4) --- updated-dependencies: - dependency-name: async-neocities dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
54 lines
1.9 KiB
JSON
54 lines
1.9 KiB
JSON
{
|
|
"name": "deploy-to-neocities",
|
|
"description": "Github Action to deplpoy a folder to Neocities.org",
|
|
"version": "3.0.0",
|
|
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io/)",
|
|
"bugs": {
|
|
"url": "https://github.com/bcomnes/deploy-to-neocities/issues"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.11.1",
|
|
"async-neocities": "4.0.4",
|
|
"minimatch": "10.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@voxpelli/tsconfig": "^15.0.0",
|
|
"top-bun": "^10.0.0",
|
|
"auto-changelog": "^2.0.0",
|
|
"gh-release": "^7.0.0",
|
|
"npm-run-all2": "^7.0.0",
|
|
"neostandard": "^0.11.8",
|
|
"c8": "^10.0.0",
|
|
"esbuild": "~0.24.0",
|
|
"typescript": "~5.7.2"
|
|
},
|
|
"homepage": "https://github.com/bcomnes/deploy-to-neocities#readme",
|
|
"keywords": [],
|
|
"license": "MIT",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"private": true,
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bcomnes/deploy-to-neocities.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run clean && run-p build:*",
|
|
"build:action": "rm -rf dist && esbuild index.js --bundle --platform=node --sourcemap=external --outdir=dist --metafile=dist/meta.json --out-extension:.js=.cjs",
|
|
"build:site": "tb --src . --dest public --ignore dist,coverage",
|
|
"dist-pkg": "echo \"{ \\\"type\\\": \\\"commonjs\\\" }\" > dist/package.json",
|
|
"clean": "rm -rf public && mkdir -p public",
|
|
"release": "git push --follow-tags && gh-release -y",
|
|
"start": "npm run watch",
|
|
"test": "run-s test:*",
|
|
"test:lint": "eslint",
|
|
"test:tsc": "tsc",
|
|
"test:node": "c8 node --test",
|
|
"version": "run-s version:*",
|
|
"version:build": "npm run build:action && git add dist",
|
|
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
|
|
"watch": "npm run clean && run-p watch:*",
|
|
"watch:site": "npm run build:site -- -w"
|
|
}
|
|
}
|