@jbrowse/mobx-state-tree 5.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@jbrowse/mobx-state-tree",
3
+ "version": "5.4.4",
4
+ "description": "Fork of mobx-state-tree starting from v5.4.2 for use in jbrowse 2",
5
+ "type": "module",
6
+ "types": "./dist/index.d.ts",
7
+ "exports": {
8
+ "import": {
9
+ "import": "./dist/mobx-state-tree.module.js"
10
+ },
11
+ "require": {
12
+ "require": "./dist/mobx-state-tree.js"
13
+ }
14
+ },
15
+ "sideEffects": false,
16
+ "scripts": {
17
+ "lint": "eslint --report-unused-disable-directives --max-warnings 0",
18
+ "clean": "rimraf dist",
19
+ "prebuild": "yarn clean",
20
+ "format": "yarn prettier --write .",
21
+ "build": "tsc && rollup -c",
22
+ "test": "vitest",
23
+ "test-ci": "yarn test:dev && yarn test:prod",
24
+ "test:dev": "cross-env NODE_ENV=development vitest --run",
25
+ "test:prod": "cross-env NODE_ENV=production vitest --run",
26
+ "preversion": "yarn build && yarn test-ci",
27
+ "postversion": "git push --follow-tags"
28
+ },
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "https://github.com/cmdcolin/mobx-state-tree.git"
32
+ },
33
+ "author": "Michel Weststrate",
34
+ "license": "MIT",
35
+ "files": [
36
+ "dist/"
37
+ ],
38
+ "devDependencies": {
39
+ "@types/node": "^24.10.1",
40
+ "concat": "^1.0.3",
41
+ "cross-env": "^10.1.0",
42
+ "eslint": "^9.39.1",
43
+ "eslint-plugin-import": "^2.32.0",
44
+ "mobx": "^6.15.0",
45
+ "prettier": "^3.7.1",
46
+ "rimraf": "^6.1.2",
47
+ "rollup": "^4.53.3",
48
+ "rollup-plugin-replace": "^2.2.0",
49
+ "spec.ts": "^1.1.3",
50
+ "tsdown": "^0.16.8",
51
+ "typescript": "^5.9.3",
52
+ "typescript-eslint": "^8.48.0",
53
+ "vitest": "^4.0.14"
54
+ },
55
+ "peerDependencies": {
56
+ "mobx": "^6.3.0"
57
+ },
58
+ "keywords": [
59
+ "mobx",
60
+ "mobx-state-tree",
61
+ "promise",
62
+ "reactive",
63
+ "frp",
64
+ "functional-reactive-programming",
65
+ "state management"
66
+ ],
67
+ "publishConfig": {
68
+ "access": "public"
69
+ }
70
+ }