{
	"start" : "pnpm i",
	"updates": "pnpm up",
	"test": "node src/index.js",
	"test-list": "node src/index.js list",
	"updates-latest": "pnpm up --latest",
	"build" : "pnpm pes lint-fix && pnpm pes build-bundle && pnpm pes build-pkg",
	"build-bundle" : "node esbuild.config.js",
	"build-pkg" : "pkg pkg.config.json",
	"build-test" : "pnpm pes build-test-js && pnpm pes build-test-cjs",
	"build-test-list" : "pnpm pes build-test-js list && pnpm pes build-test-cjs list",
	"build-test-js" : "node dist/build/bundle.js",
	"build-test-cjs" : "node dist/build/bundle.cjs",
	"deploy": "pnpm pes lint-fix && npm login && npm publish --access public",
	"lint": "eslint . --ext .js",
	"lint-fix": "eslint . --ext .js --fix",
	"cli" : "node src/index.js hello",
	"cli-bundle" : "pnpm pes cli-bundle-c && pnpm pes cli-bundle-esm",
	"cli-bundle-c" : "node dist/build/bundle.cjs hello",
	"cli-bundle-esm" : "node dist/build/bundle.js hello"
}