Files
Phantom/landing/package.json
Phantom Release 87820c0e58 feat: extract landing to separate service with Docker + status badge
- landing/ structure with src/, Dockerfile, nginx.conf
- docker-compose.landing.yml on port 8080:80
- status.js with build status badge (CI, commit, issues)
- api/status.json fallback
- Glassmorphism cyberpunk styling matching existing design
2026-05-18 18:48:41 +01:00

58 lines
1.8 KiB
JSON

{
"name": "phantom-landing",
"version": "1.0.0",
"description": "Высокотехнологичный лендинг для Phantom Protocol - революционной системы аной сетевой коммуникации",
"main": "index.html",
"scripts": {
"start": "npx http-server -p 8000 -c-1",
"minify:css": "csso css/style.css -o css/style.min.css && csso css/responsive.css -o css/responsive.min.css",
"minify:js": "terser js/main.js -o js/main.min.js -c -m",
"minify": "npm run minify:css && npm run minify:js",
"build": "npm run minify && echo 'Build complete'",
"lighthouse": "lighthouse http://localhost:8000 --view",
"validate:html": "html-validate index.html",
"validate:css": "stylelint 'css/**/*.css'",
"validate:js": "eslint js/main.js",
"validate": "npm run validate:html && npm run validate:css && npm run validate:js",
"deploy": "echo 'Deploy to your preferred hosting service'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UniqueSoft/phantom-landing.git"
},
"keywords": [
"phantom-protocol",
"landing-page",
"cyberpunk",
"privacy",
"anonymity",
"post-quantum",
"cryptography",
"dht",
"kademlia"
],
"author": "UniqueSoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/phantom-protocol-landing/issues"
},
"homepage": "https://phantom.local",
"devDependencies": {
"csso-cli": "^4.0.2",
"terser": "^5.26.0",
"http-server": "^14.1.1",
"lighthouse": "^11.5.0",
"html-validate": "^8.9.1",
"stylelint": "^16.1.0",
"eslint": "^8.56.0"
},
"browserslist": [
"last 2 versions",
"> 1%",
"not dead"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
}
}