/
docNemo
/
hex-map-editor
Обзор
Документация
Войти
/
docNemo
/
hex-map-editor
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
5
CI/CD
Аналитика
Безопасность
main
package.json
41 строка
1 KB
docNemo
feat(release): автоматическая публикация релиза на GitVerse
01 авг 2026, 23:33
01 авг 2026, 23:33
7ce3158
Код
Авторство
О чём код?
{ "name": "hex-map-editor", "version": "0.1.0", "description": "Процедурный генератор и редактор гексагональных карт для Foundry Virtual Tabletop", "type": "module", "private": true, "license": "MIT", "scripts": { "build": "vite build", "watch": "vite build --watch", "package": "npm run build && node tools/package.mjs", "publish:release": "node tools/publish-release.mjs", "install:local": "npm run build && node tools/install-local.mjs", "placeholders": "node tools/gen-placeholders.mjs", "check:assets": "node tools/check-assets.mjs", "test": "vitest run", "test:watch": "vitest", "lint": "eslint .", "format": "prettier --write .", "format:check": "prettier --check .", "typecheck": "tsc --noEmit", "verify": "npm run typecheck && npm run lint && npm run test" }, "dependencies": { "simplex-noise": "^4.0.3" }, "devDependencies": { "@eslint/js": "^10.0.1", "@types/node": "^26.1.2", "archiver": "^8.0.0", "eslint": "^10.8.0", "prettier": "^3.9.6", "typescript": "^6.0.3", "typescript-eslint": "^8.65.0", "vite": "^8.2.0", "vitest": "^4.1.10" }, "engines": { "node": ">=20" } }