UNPKG

@ptkdev/sveltekit-electron-adapter

Version:

Adapter for SvelteKit apps that prerenders your entire site as a collection of static files for use with Electron

109 lines (108 loc) 3.85 kB
{ "name": "@ptkdev/sveltekit-electron-adapter", "displayName": "SvelteKit Adapter for Desktop Apps with Electron", "description": "Adapter for SvelteKit apps that prerenders your entire site as a collection of static files for use with Electron", "version": "0.3.0", "main": "./app/adapter/index.js", "type": "module", "exports": { ".": { "types": "./app/adapter/index.d.ts", "import": "./app/adapter/index.js" }, "./package.json": "./package.json" }, "types": "./app/adapter/index.d.ts", "publishConfig": { "access": "public" }, "author": "Patryk Rzucidło [@ptkdev] <support@ptkdev.io> (https://ptk.dev)", "license": "MIT", "license-docs": "CC BY 4.0", "license-translations": "CC BY 4.0", "license-images": "CC BY-NC 4.0", "homepage": "https://github.com/ptkdev/sveltekit-electron-adapter", "repository": { "type": "git", "url": "https://github.com/ptkdev/sveltekit-electron-adapter.git" }, "bugs": { "url": "https://github.com/ptkdev/sveltekit-electron-adapter/issues" }, "engines": { "node": ">=14.0.0" }, "scripts": { "build": "echo \"Compiling...\"", "release": "npm run build", "test": "jest app", "docs": "git submodule update --recursive && markserv ./README.md", "lint": "npm run lint-prettify && eslint . --cache --ext .ts,.js", "lint-fix": "npm run lint-prettify && eslint . --cache --ext .ts,.js --fix", "lint-prettify": "prettier --write --ignore-unknown '**/*.{md,json,ts,js}'", "git-set-upstream": "git remote add upstream git@github.com:ptkdev/sveltekit-electron-adapter.git && git fetch upstream", "git-pull-upstream": "git pull upstream main && git pull upstream beta && git pull upstream nightly", "git-pull": "git pull --recursive", "git-hash": "ts-node --esm scripts/githash.ts", "git-ignore-reset": "git rm -r --cached . && git add . && git commit -m \"[Fix] Removing all files in .gitignore\"", "github-workflow-next-version": "ts-node --esm scripts/version.ts", "github-workflow-changelog": "ts-node --esm scripts/changelog_release.ts", "npm-publish-main": "git checkout main && npm publish", "npm-publish-beta": "git checkout beta && npm publish --tag beta", "npm-publish-nightly": "git checkout nightly && npm publish --tag nightly", "contributors-generate": "all-contributors generate", "all-shields-generate": "all-shields-generate", "pre-commit": "npm run contributors-generate && npm run all-shields-generate && npm run lint-fix", "pkg-clean": "rm -rf node_modules package-lock.json && npm install && npm install eslint@7 --save-dev && husky install", "pkg-update": "npm update", "pkg-upgrade": "npx --yes npm-check-updates -u && npm install && npm install eslint@7 --save-dev && husky install" }, "dependencies": { "replace-in-file": "^6.3.5", "tiny-glob": "^0.2.9" }, "devDependencies": { "@ptkdev/all-shields-cli": "^2.0.2", "@ptkdev/logger": "^1.8.0", "@types/jest": "^29.4.0", "@types/node": "^18.13.0", "@types/shelljs": "^0.8.11", "@types/yargs": "^17.0.22", "@typescript-eslint/eslint-plugin": "^5.51.0", "@typescript-eslint/parser": "^5.51.0", "all-contributors-cli": "^6.24.0", "eslint": "^7.32.0", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-jsdoc": "^39.8.0", "husky": "^8.0.3", "jest": "^29.4.2", "json": "^11.0.0", "markserv": "^1.17.4", "prettier": "^2.8.4", "shelljs": "^0.8.5", "sirv": "^2.0.2", "svelte": "^3.55.1", "ts-jest": "^29.0.5", "ts-node": "^10.9.1", "ts-patch": "^2.1.0", "typescript": "^4.9.5", "typescript-transform-paths": "^3.4.6", "uvu": "^0.5.6", "vite": "^4.1.1", "yargs": "^17.6.2" }, "peerDependencies": { "@sveltejs/kit": "^1.0.0" }, "keywords": [ "ptkdev", "svelte", "sveltekit", "electron", "electronjs", "electron forge", "sveltekit adapter", "sveltekit electron", "sveltekit electron forge" ] }