package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "xstate",
  3. "version": "4.38.3",
  4. "description": "Finite State Machines and Statecharts for the Modern Web.",
  5. "main": "lib/index.js",
  6. "module": "es/index.js",
  7. "types": "lib/index.d.ts",
  8. "sideEffects": false,
  9. "funding": {
  10. "type": "opencollective",
  11. "url": "https://opencollective.com/xstate"
  12. },
  13. "files": [
  14. "dist",
  15. "lib/**/*.js",
  16. "lib/**/*.d.ts",
  17. "es/**/*.js",
  18. "es/**/*.d.ts"
  19. ],
  20. "keywords": [
  21. "statechart",
  22. "state machine",
  23. "finite state machine",
  24. "finite automata",
  25. "scxml",
  26. "state",
  27. "interpreter"
  28. ],
  29. "scripts": {
  30. "clean": "rm -rf lib es dist tsconfig.tsbuildinfo",
  31. "test": "jest",
  32. "build": "rollup -c",
  33. "prepare": "npm run build"
  34. },
  35. "repository": {
  36. "type": "git",
  37. "url": "git+https://github.com/statelyai/xstate.git"
  38. },
  39. "author": "David Khourshid <davidkpiano@gmail.com>",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/statelyai/xstate/issues"
  43. },
  44. "homepage": "https://github.com/statelyai/xstate/tree/main/packages/core#readme",
  45. "devDependencies": {
  46. "@babel/cli": "^7.10.5",
  47. "@babel/core": "^7.10.5",
  48. "@rollup/plugin-babel": "^5.3.0",
  49. "@scion-scxml/test-framework": "^2.0.15",
  50. "babel-plugin-annotate-pure-calls": "^0.4.0",
  51. "fast-glob": "^3.2.11",
  52. "jest": "^26.6.3",
  53. "jsdom": "^14.0.0",
  54. "jsdom-global": "^3.0.2",
  55. "lerna-alias": "3.0.3-0",
  56. "pkg-up": "^3.1.0",
  57. "rollup": "^2.69.0",
  58. "rollup-plugin-filesize": "^6.2.1",
  59. "rollup-plugin-replace": "^2.2.0",
  60. "rollup-plugin-terser": "^5.1.2",
  61. "rollup-plugin-typescript2": "^0.30.0",
  62. "rollup-plugin-uglify": "^6.0.2",
  63. "rxjs": "^7.1.0",
  64. "ts-jest": "^26.5.6",
  65. "tslib": "^2.3.1",
  66. "typescript": "^4.8.4",
  67. "xml-js": "^1.6.11"
  68. }
  69. }