-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.33 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
{
"version": "2.2.3",
"license": "MIT",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"repository": "https://github.com/kubk/mobx-log",
"main": "dist/index.js",
"types": "dist/mobx-log.d.ts",
"scripts": {
"build": "rollup -c",
"test": "npx vitest",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"singleQuote": true
},
"name": "mobx-log",
"author": "Egor Gorbachev",
"module": "dist/mobx-log.esm.js",
"size-limit": [
{
"path": "dist/index.js",
"limit": "10 KB"
},
{
"path": "dist/mobx-log.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/react": "^17.0.21",
"@types/react-dom": "^17.0.9",
"husky": "^8.0.0",
"jsdom": "^25.0.1",
"mobx": "^6.3.5",
"mobx-react-lite": "^3.2.1",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"size-limit": "^5.0.3",
"tslib": "^2.3.1",
"typescript": "^4.8.2",
"vitest": "^2.1.4"
}
}