Files
Phantom/website/package.json

57 lines
1.8 KiB
JSON

{
"name": "phantom-protocol-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",
"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/yourusername/phantom-protocol-landing.git"
},
"keywords": [
"phantom-protocol",
"landing-page",
"cyberpunk",
"privacy",
"anonymity",
"post-quantum",
"cryptography",
"dht",
"kademlia"
],
"author": "NeroWorld AI",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/phantom-protocol-landing/issues"
},
"homepage": "https://github.com/yourusername/phantom-protocol-landing#readme",
"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"
}
}