Skip to main content
Module

x/xstate/package.json

State machines and statecharts for the modern web.
Go to Latest
File
{ "name": "xstate", "version": "4.20.0", "description": "Finite State Machines and Statecharts for the Modern Web.", "main": "lib/index.js", "module": "es/index.js", "types": "lib/index.d.ts", "sideEffects": false, "funding": { "type": "opencollective", "url": "https://opencollective.com/xstate" }, "files": [ "dist", "lib/**/*.js", "lib/**/*.d.ts", "es/**/*.js", "es/**/*.d.ts" ], "keywords": [ "statechart", "state machine", "finite state machine", "finite automata", "scxml", "state", "interpreter" ], "scripts": { "clean": "rm -rf lib es dist tsconfig.tsbuildinfo", "test": "jest", "build": "tsc && rollup -c && npm run annotate:es", "annotate:es": "babel es --out-dir es --no-babelrc --plugins annotate-pure-calls", "preversion": "npm run test", "version": "npm run build", "postversion": "git push --follow-tags", "prepublishOnly": "npm run build", "publish:next": "npm version prerelease && npm publish --tag next" }, "repository": { "type": "git", "url": "git+https://github.com/davidkpiano/xstate.git" }, "author": "David Khourshid <davidkpiano@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/davidkpiano/xstate/issues" }, "homepage": "https://github.com/davidkpiano/xstate/tree/main/packages/core#readme", "devDependencies": { "@babel/cli": "^7.10.5", "@babel/core": "^7.10.5", "@scion-scxml/test-framework": "^2.0.15", "babel-plugin-annotate-pure-calls": "^0.4.0", "jest": "^26.6.3", "jsdom": "^14.0.0", "jsdom-global": "^3.0.2", "lerna-alias": "3.0.3-0", "pkg-up": "^3.1.0", "rollup": "^2.35.1", "rollup-plugin-filesize": "^6.2.1", "rollup-plugin-replace": "^2.2.0", "rollup-plugin-terser": "^5.1.2", "rollup-plugin-typescript2": "^0.29.0", "rollup-plugin-uglify": "^6.0.2", "rxjs": "^6.5.1", "ts-jest": "^26.5.6", "tslib": "^2.2.0", "typescript": "^4.3.2", "xml-js": "^1.6.11" }}