package.json 822 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "olivetin-webui",
  3. "version": "1.0.0",
  4. "description": "The WebUI for OliveTin",
  5. "repository": "https://github.com/OliveTin/OliveTin",
  6. "source": "index.html",
  7. "devDependencies": {
  8. "parcel": "^2.16.4",
  9. "parcel-resolver-ignore": "^2.2.1",
  10. "process": "^0.11.10",
  11. "standard": "^17.1.2",
  12. "stylelint": "^17.4.0",
  13. "stylelint-config-standard": "^40.0.0"
  14. },
  15. "scripts": {
  16. "lint": "standard",
  17. "lint:fix": "standard --fix",
  18. "test": "echo \"Error: no test specified\" && exit 1"
  19. },
  20. "standard": {
  21. "envs": [
  22. "browser"
  23. ]
  24. },
  25. "author": "",
  26. "parcelIgnore": [
  27. "theme.css",
  28. "OliveTinLogo.png",
  29. "OliveTinLogo-57px.png",
  30. "OliveTinLogo-120px.png",
  31. "OliveTinLogo-180px.png"
  32. ],
  33. "license": "AGPL-3.0-only",
  34. "dependencies": {
  35. "@xterm/addon-fit": "^0.11.0",
  36. "@xterm/xterm": "^6.0.0"
  37. }
  38. }