package.json 946 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@apollographql/graphql-playground-html",
  3. "version": "1.6.27",
  4. "homepage": "https://github.com/graphcool/graphql-playground/tree/master/packages/graphql-playground-html",
  5. "description": "GraphQL IDE for better development workflows (GraphQL Subscriptions, interactive docs & collaboration).",
  6. "contributors": [
  7. "Tim Suchanek <tim@graph.cool>",
  8. "Johannes Schickling <johannes@graph.cool>",
  9. "Mohammad Rajabifard <mo.rajbi@gmail.com>"
  10. ],
  11. "repository": "http://github.com/graphcool/graphql-playground.git",
  12. "license": "MIT",
  13. "main": "dist/index.js",
  14. "files": [
  15. "dist"
  16. ],
  17. "scripts": {
  18. "build": "rimraf dist && tsc",
  19. "prepare": "npm run build"
  20. },
  21. "devDependencies": {
  22. "@types/node": "12.12.34",
  23. "rimraf": "3.0.2",
  24. "typescript": "3.9.5"
  25. },
  26. "typings": "dist/index.d.ts",
  27. "typescript": {
  28. "definition": "dist/index.d.ts"
  29. },
  30. "dependencies": {
  31. "xss": "^1.0.8"
  32. }
  33. }