-
Notifications
You must be signed in to change notification settings - Fork 642
/
package.json
112 lines (112 loc) · 3.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mobx-state-tree",
"version": "7.0.0-pre.2",
"description": "Opinionated, transactional, MobX powered state container",
"main": "dist/mobx-state-tree.js",
"umd:main": "dist/mobx-state-tree.umd.js",
"module": "dist/mobx-state-tree.module.js",
"browser": {
"./dist/mobx-state-tree.js": "./dist/mobx-state-tree.js",
"./dist/mobx-state-tree.module.js": "./dist/mobx-state-tree.module.js"
},
"unpkg": "dist/mobx-state-tree.umd.min.js",
"jsnext:main": "dist/mobx-state-tree.module.js",
"react-native": "dist/mobx-state-tree.module.js",
"typings": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "shx rm -rf dist lib",
"build": "bun run clean && tsc && cpr lib/src dist --filter=\\.js$ && rollup -c",
"test:dev": "NODE_ENV=development bun test",
"test:prod": "MST_TESTING=1 NODE_ENV=production bun test",
"test:all": "bun run test:dev && bun run test:prod && bun run size",
"test:perf": "bun test ./__tests__/perf/",
"test:perf:compiled": "bun run build && bun run jest:perf && TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' /usr/bin/time node --expose-gc --require ts-node/register __tests__/perf/report.ts",
"typecheck": "tsc --noEmit",
"size": "size-limit",
"tag-new-version": "yarn version && git push --tags",
"build-docs": "bun run fix-typedoc && shx rm -rf ./docs/API && typedoc --options ./typedocconfig.js",
"publish-docs": "bun run build-docs && cd ./website && GIT_USER=jamonholmgren USE_SSH=true bun run publish-gh-pages",
"start": "cd website && bun run start",
"prepare": "husky install",
"lint": "tslint -c ./tslint.json 'src/**/*.ts'",
"fix-typedoc": "shx rm -rf ./node_modules/typedoc/node_modules/typescript",
"prettier:list": "prettier --list-different \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\" \"__tests__/**/*.ts\"",
"prettier:write": "prettier --write \"src/**/*.ts\" \"__tests__/**/*.ts\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/mobxjs/mobx-state-tree.git"
},
"author": "Michel Weststrate",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-state-tree/issues"
},
"files": [
"dist/"
],
"devDependencies": {
"@size-limit/preset-big-lib": "^5.0.3",
"@types/bun": "^1.0.6",
"@types/node": "^12.0.2",
"concat": "^1.0.3",
"coveralls": "^3.1.0",
"cpr": "^3.0.1",
"husky": "^7.0.0",
"lint-staged": "^11.1.2",
"mobx": "^6.13.1",
"prettier": "^2.4.1",
"rollup": "^2.18.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^9.0.1",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-terser": "^6.1.0",
"shx": "^0.3.2",
"size-limit": "^5.0.3",
"ts-essentials": "^9.4.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "0.15.8",
"typedoc-plugin-markdown": "2.2.11",
"typescript": "^5.3.3",
"yarn-deduplicate": "^3.1.0"
},
"peerDependencies": {
"mobx": "^6.3.0"
},
"keywords": [
"mobx",
"mobx-state-tree",
"promise",
"reactive",
"frp",
"functional-reactive-programming",
"state management"
],
"gitHead": "27ec7ac0b0743a367fb01a7f40192f3042bd91f2",
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": false,
"trailingComma": "none",
"semi": false
},
"size-limit": [
{
"path": "./dist/mobx-state-tree.min.js",
"limit": "25 KB",
"webpack": false,
"running": false
}
]
}